(file) Return to CIMInstanceRep.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

 1 martin 1.45 //%LICENSE////////////////////////////////////////////////////////////////
 2 martin 1.46 //
 3 martin 1.45 // Licensed to The Open Group (TOG) under one or more contributor license
 4             // agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
 5             // this work for additional information regarding copyright ownership.
 6             // Each contributor licenses this file to you under the OpenPegasus Open
 7             // Source License; you may not use this file except in compliance with the
 8             // License.
 9 martin 1.46 //
10 martin 1.45 // Permission is hereby granted, free of charge, to any person obtaining a
11             // copy of this software and associated documentation files (the "Software"),
12             // to deal in the Software without restriction, including without limitation
13             // the rights to use, copy, modify, merge, publish, distribute, sublicense,
14             // and/or sell copies of the Software, and to permit persons to whom the
15             // Software is furnished to do so, subject to the following conditions:
16 martin 1.46 //
17 martin 1.45 // The above copyright notice and this permission notice shall be included
18             // in all copies or substantial portions of the Software.
19 martin 1.46 //
20 martin 1.45 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21 martin 1.46 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 martin 1.45 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
23             // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
24             // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
25             // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
26             // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 martin 1.46 //
28 martin 1.45 //////////////////////////////////////////////////////////////////////////
29 mike   1.17 //
30             //%/////////////////////////////////////////////////////////////////////////////
31             
32             #ifndef Pegasus_InstanceDeclRep_h
33             #define Pegasus_InstanceDeclRep_h
34             
35             #include <Pegasus/Common/Config.h>
36 mike   1.18 #include <Pegasus/Common/CIMObjectRep.h>
37 kumpf  1.28 #include <Pegasus/Common/Linkage.h>
38 karl   1.33 #include <Pegasus/Common/CIMPropertyList.h>
39 mike   1.17 PEGASUS_NAMESPACE_BEGIN
40             
41             class DeclContext;
42             class CIMInstance;
43             class CIMConstInstance;
44             class CIMClass;
45             class CIMConstClass;
46             
47 mike   1.39 class CIMInstanceRep : public CIMObjectRep
48 mike   1.17 {
49             public:
50             
51 mike   1.22     CIMInstanceRep(
52 kumpf  1.41         const CIMObjectPath& reference);
53 mike   1.17 
54 mike   1.18     virtual ~CIMInstanceRep();
55 mike   1.17 
56                 void resolve(
57 kumpf  1.41         DeclContext* declContext,
58                     const CIMNamespaceName& nameSpace,
59                     CIMConstClass& cimClassOut,
60                     Boolean propagateQualifiers);
61 mike   1.17 
62 mike   1.18     virtual CIMObjectRep* clone() const
63 mike   1.17     {
64 kumpf  1.41         return new CIMInstanceRep(*this);
65 mike   1.17     }
66             
67 kumpf  1.30     CIMObjectPath buildPath(const CIMConstClass& cimClass) const;
68 mike   1.17 
69 karl   1.33     void filter(Boolean includeQualifiers,
70                         Boolean includeClassOrigin,
71                         const CIMPropertyList & propertyList);
72 anusha.kandepu 1.48    
73 mike           1.17 private:
74                     
75                         CIMInstanceRep(const CIMInstanceRep& x);
76                     
77 kumpf          1.42     CIMInstanceRep();    // Unimplemented
78                         CIMInstanceRep& operator=(const CIMInstanceRep& x);    // Unimplemented
79 mike           1.17 
80                         friend class CIMInstance;
81 r.kieninger    1.40     friend class CIMClassRep;
82 mike           1.44     friend class CIMBuffer;
83 thilo.boehm    1.47     friend class SCMOInstance;
84                         friend class SCMOClass;
85 mike           1.17 };
86                     
87                     PEGASUS_NAMESPACE_END
88                     
89                     #endif /* Pegasus_InstanceDeclRep_h */

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2