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

Diff for /pegasus/src/Pegasus/CQL/CQLPredicate.cpp between version 1.1.2.1 and 1.1.2.2

version 1.1.2.1, 2004/08/20 18:22:36 version 1.1.2.2, 2004/08/24 18:38:33
Line 6 
Line 6 
 #include <Pegasus/Common/ArrayImpl.h> #include <Pegasus/Common/ArrayImpl.h>
 #undef PEGASUS_ARRAY_T #undef PEGASUS_ARRAY_T
  
 //##ModelId=40FD61E30034  CQLPredicate::CQLPredicate(CQLSimplePredicate inSimplePredicate, Boolean inVerted)
 CQLPredicate::CQLPredicate(const CQLExpression& inExpression, ExpressionOpType inOperator)  
 { {
 } }
  
 //##ModelId=40FD6290025E  CQLPredicate::CQLPredicate(CQLPredicate inPredicate, Boolean inInverted)
 CQLPredicate::CQLPredicate(const CQLExpression& leftSideExpression, const CQLExpression& rightSideExpression, ExpressionOpType inOperator)  
 { {
 } }
  
 //##ModelId=40FD725B025F  
 CQLPredicate::CQLPredicate(CQLPredicate inPredicate, Boolean inInvert)  
 {  
 }  
   
 //##ModelId=40FC365903BF  
 Boolean CQLPredicate::evaluate(CIMInstance CI, QueryContext& QueryCtx) Boolean CQLPredicate::evaluate(CIMInstance CI, QueryContext& QueryCtx)
 { {
    return false;    return false;
 } }
  
 //##ModelId=40FD6FF202ED  Boolean CQLPredicate::isTerminal(){
           return _terminal;
   }
   Boolean CQLPredicate::getInverted(){
           return _invert;
   }
   
   Boolean CQLPredicate::setInverted(){
           _invert = true;
   }
   
 void CQLPredicate::appendPredicate(CQLPredicate inPredicate, BooleanOpType inBooleanOperator) void CQLPredicate::appendPredicate(CQLPredicate inPredicate, BooleanOpType inBooleanOperator)
 { {
 } }
  
   void CQLPredicate::appendPredicate(CQLSimplePredicate inSimplePredicate, BooleanOpType inBooleanOperator){
   
   }
   
   Array<CQLPredicate> CQLPredicate::getPredicates(){
   //      return _predicates;
   }
   
   CQLSimplePredicate CQLPredicate::getSimplePredicate(){
           return _simplePredicate;
   }
   /*
   BooleanOpType[] CQLPredicate::getOperators(){
           return operators;
   }
   
   Array<CQLScope> CQLPredicate::getScopes(){
   
   }
   
   void CQLPredicate::applyScopes(Array<CQLScope> & inScopes){
   
   }
   */
   
   Boolean CQLPredicate::isSimple(){
   
   }
   
   String CQLPredicate::toString(){
   
   }
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.1.2.1  
changed lines
  Added in v.1.1.2.2

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2