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

 1 karl  1.3 //%2006////////////////////////////////////////////////////////////////////////
 2 chuck 1.1 //
 3 karl  1.2 // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
 4           // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
 5           // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
 6 chuck 1.1 // IBM Corp.; EMC Corporation, The Open Group.
 7 karl  1.2 // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
 8           // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
 9           // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
10           // EMC Corporation; VERITAS Software Corporation; The Open Group.
11 karl  1.3 // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;
12           // EMC Corporation; Symantec Corporation; The Open Group.
13 chuck 1.1 //
14           // Permission is hereby granted, free of charge, to any person obtaining a copy
15           // of this software and associated documentation files (the "Software"), to
16           // deal in the Software without restriction, including without limitation the
17           // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
18           // sell copies of the Software, and to permit persons to whom the Software is
19           // furnished to do so, subject to the following conditions:
20           // 
21           // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
22           // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
23           // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
24           // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
25           // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
26           // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
27           // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28           // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29           //
30           //==============================================================================
31           //
32           //%/////////////////////////////////////////////////////////////////////////////
33           
34 chuck 1.1 #ifndef Pegasus_CIMOMHandleQueryContext_h
35           #define Pegasus_CIMOMHandleQueryContext_h
36           
37           #include <Pegasus/Common/Config.h>
38           #include <Pegasus/Common/AutoPtr.h>
39           #include <Pegasus/Provider/Linkage.h>
40           #include <Pegasus/Common/CIMName.h>
41 kumpf 1.4 #include <Pegasus/Query/QueryCommon/QueryContext.h>
42 chuck 1.1 #include <Pegasus/Provider/CIMOMHandle.h>
43           
44 kumpf 1.4 #ifdef PEGASUS_USE_EXPERIMENTAL_INTERFACES
45 chuck 1.1 
46           PEGASUS_NAMESPACE_BEGIN
47           
48           
49           class PEGASUS_PROVIDER_LINKAGE CIMOMHandleQueryContext: public QueryContext
50           {
51 kumpf 1.4 public:
52 chuck 1.1 
53 kumpf 1.4     CIMOMHandleQueryContext(const CIMNamespaceName& inNS, CIMOMHandle& handle);
54 chuck 1.1 
55 kumpf 1.4     CIMOMHandleQueryContext(const CIMOMHandleQueryContext& handle);
56 chuck 1.1 
57 kumpf 1.4     ~CIMOMHandleQueryContext();
58 chuck 1.1 
59 kumpf 1.5     QueryContext* clone() const;
60 chuck 1.1 
61 kumpf 1.4     CIMOMHandleQueryContext& operator=(const CIMOMHandleQueryContext& rhs);
62 chuck 1.1 
63 kumpf 1.4     CIMClass getClass (const CIMName& inClassName) const;
64 chuck 1.1 
65 kumpf 1.4     Array<CIMName> enumerateClassNames(const CIMName& inClassName) const;
66 chuck 1.1 
67 kumpf 1.4     // Returns true if the derived class is a subclass of the base class.
68               // Note: this will return false if the classes are the same.
69               // Note: the default namespace of the query is used.
70               Boolean isSubClass(
71                   const CIMName& baseClass,
72                   const CIMName& derivedClass)const;
73 chuck 1.1 
74 kumpf 1.4     // Returns the relationship between the anchor class and the related
75               // class in the class schema of the query's default name space.
76               ClassRelation getClassRelation(
77                   const CIMName& anchorClass,
78                   const CIMName& relatedClass) const;
79 chuck 1.1 
80 kumpf 1.4 private:
81               CIMOMHandleQueryContext();
82           
83               // members
84               CIMOMHandle _CH;
85 chuck 1.1 };
86           
87           PEGASUS_NAMESPACE_END
88           #endif
89           #endif

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2