(file) Return to CQLPredicate.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / CQL

 1 humberto 1.1.2.1 #include "CQLPredicate.h"
 2                  
 3                  PEGASUS_NAMESPACE_BEGIN
 4                  
 5                  #define PEGASUS_ARRAY_T CQLPredicate
 6                  #include <Pegasus/Common/ArrayImpl.h>
 7                  #undef PEGASUS_ARRAY_T
 8                  
 9 humberto 1.1.2.2 CQLPredicate::CQLPredicate(CQLSimplePredicate inSimplePredicate, Boolean inVerted)
10 humberto 1.1.2.1 {
11                  }
12                  
13 humberto 1.1.2.2 CQLPredicate::CQLPredicate(CQLPredicate inPredicate, Boolean inInverted)
14 humberto 1.1.2.1 {
15                  }
16                  
17                  Boolean CQLPredicate::evaluate(CIMInstance CI, QueryContext& QueryCtx)
18                  {
19                     return false;
20                  }
21                  
22 humberto 1.1.2.2 Boolean CQLPredicate::isTerminal(){
23                  	return _terminal;
24                  }
25                  Boolean CQLPredicate::getInverted(){
26                  	return _invert;
27                  }
28                  
29                  Boolean CQLPredicate::setInverted(){
30                  	_invert = true;
31                  }
32                  
33 humberto 1.1.2.1 void CQLPredicate::appendPredicate(CQLPredicate inPredicate, BooleanOpType inBooleanOperator)
34                  {
35                  }
36                  
37 humberto 1.1.2.2 void CQLPredicate::appendPredicate(CQLSimplePredicate inSimplePredicate, BooleanOpType inBooleanOperator){
38                  
39                  }
40                  
41                  Array<CQLPredicate> CQLPredicate::getPredicates(){
42                  //	return _predicates;
43                  }
44                  
45                  CQLSimplePredicate CQLPredicate::getSimplePredicate(){
46                  	return _simplePredicate;
47                  }
48                  /*
49                  BooleanOpType[] CQLPredicate::getOperators(){
50                  	return operators;
51                  }
52                  
53                  Array<CQLScope> CQLPredicate::getScopes(){
54                  
55                  }
56                  
57                  void CQLPredicate::applyScopes(Array<CQLScope> & inScopes){
58 humberto 1.1.2.2 
59                  }
60                  */
61                  
62                  Boolean CQLPredicate::isSimple(){
63                  
64                  }
65                  
66                  String CQLPredicate::toString(){
67                  
68                  }
69 humberto 1.1.2.1 PEGASUS_NAMESPACE_END

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2