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

 1 karl  1.7 //%2005////////////////////////////////////////////////////////////////////////
 2 mike  1.2 //
 3 karl  1.6 // 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 karl  1.5 // IBM Corp.; EMC Corporation, The Open Group.
 7 karl  1.6 // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
 8           // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
 9 karl  1.7 // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
10           // EMC Corporation; VERITAS Software Corporation; The Open Group.
11 mike  1.2 //
12           // Permission is hereby granted, free of charge, to any person obtaining a copy
13 kumpf 1.3 // of this software and associated documentation files (the "Software"), to
14           // deal in the Software without restriction, including without limitation the
15           // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
16 mike  1.2 // sell copies of the Software, and to permit persons to whom the Software is
17           // furnished to do so, subject to the following conditions:
18           // 
19 kumpf 1.3 // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
20 mike  1.2 // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
21           // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
22 kumpf 1.3 // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
23           // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
24           // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
25 mike  1.2 // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26           // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27           //
28           //==============================================================================
29           //
30           // Author: Mike Brasher (mbrasher@bmc.com)
31           //
32 kumpf 1.4 // Modified By: Carol Ann Krug Graves, Hewlett-Packard Company
33           //                (carolann_graves@hp.com)
34 mike  1.2 //
35           //%/////////////////////////////////////////////////////////////////////////////
36           
37           #ifndef Pegasus_WQLPropertySource_h
38           #define Pegasus_WQLPropertySource_h
39           
40           #include <Pegasus/Common/Config.h>
41 kumpf 1.4 #include <Pegasus/Common/CIMName.h>
42 mike  1.2 #include <Pegasus/WQL/Linkage.h>
43           #include <Pegasus/WQL/WQLOperand.h>
44           
45           PEGASUS_NAMESPACE_BEGIN
46           
47           /** This class must be implemented to provide a source of properties for the
48               WQLSelectStatement::evaluateWhereClause() method which calls methods of
49               this class to obtain real values for property names used in the where
50               clause.
51           */
52           class PEGASUS_WQL_LINKAGE WQLPropertySource
53           {
54           public:
55           
56               /** Virtual destructor.
57               */
58               virtual ~WQLPropertySource();
59           
60               /** Returns the value whose property has the given name. The output
61           	parameter value is populated with the value of that parameter.
62           	Note that only integer, double, and string types are supported
63 mike  1.2 	(see the WQLOperand class). The implementer of this method must
64           	perform appropriate conversions to the appropriate type.
65           
66           	@param propertyName name of property to be gotten.
67           	@param value holds the value of the property upon return.
68           	@return true if such a property was found and false otherwise.
69               */
70               virtual Boolean getValue(
71 kumpf 1.4 	const CIMName& propertyName, 
72 mike  1.2 	WQLOperand& value) const = 0;
73           };
74           
75           PEGASUS_NAMESPACE_END
76           
77           #endif /* Pegasus_WQLPropertySource_h */

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2