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

Diff for /pegasus/src/Pegasus/WQL/WQLSelectStatement.cpp between version 1.13 and 1.14

version 1.13, 2005/02/05 23:00:52 version 1.14, 2005/05/03 21:13:52
Line 113 
Line 113 
     _rep->setAllProperties(allProperties);     _rep->setAllProperties(allProperties);
 } }
  
 const CIMPropertyList WQLSelectStatement::getSelectPropertyList () const  CIMPropertyList WQLSelectStatement::getSelectPropertyList
       (const CIMObjectPath& inClassName)
 { {
         return _rep->getSelectPropertyList();          return _rep->getSelectPropertyList(inClassName);
 } }
  
 const CIMPropertyList WQLSelectStatement::getWherePropertyList () const  CIMPropertyList WQLSelectStatement::getWherePropertyList
       (const CIMObjectPath& inClassName)
 { {
     return _rep->getWherePropertyList();      return _rep->getWherePropertyList(inClassName);
 } }
  
 Boolean WQLSelectStatement::appendWherePropertyName(const CIMName& x) Boolean WQLSelectStatement::appendWherePropertyName(const CIMName& x)
Line 134 
Line 136 
         return _rep->evaluateWhereClause(source);         return _rep->evaluateWhereClause(source);
 } }
  
 void WQLSelectStatement::applyProjection(CIMInstance& ci) throw (Exception)  void WQLSelectStatement::applyProjection(CIMInstance& ci,
       Boolean allowMissing) throw (Exception)
 { {
         _rep->applyProjection(ci);          _rep->applyProjection(ci, allowMissing);
 } }
  
 void WQLSelectStatement::applyProjection(CIMObject& ci)  void WQLSelectStatement::applyProjection(CIMObject& ci,
       Boolean allowMissing)
 { {
         _rep->applyProjection(ci);          _rep->applyProjection(ci, allowMissing);
 } }
  
 void WQLSelectStatement::print() const void WQLSelectStatement::print() const


Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2