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

Diff for /pegasus/src/Pegasus/CQL/CQLTerm.cpp between version 1.1.2.10 and 1.1.2.11

version 1.1.2.10, 2004/10/05 19:15:26 version 1.1.2.11, 2004/10/18 21:50:07
Line 55 
Line 55 
         _rep = new CQLTermRep(inTerm._rep);         _rep = new CQLTermRep(inTerm._rep);
 } }
  
 CQLTerm::CQLTerm(CQLFactor theFactor)  CQLTerm::CQLTerm(const CQLFactor& theFactor)
 { {
         _rep = new CQLTermRep(theFactor);         _rep = new CQLTermRep(theFactor);
 } }
Line 75 
Line 75 
         _rep->appendOperation(inFactorOpType,inFactor);         _rep->appendOperation(inFactorOpType,inFactor);
 } }
  
 String CQLTerm::toString()  String CQLTerm::toString()const
 { {
    return _rep->toString();    return _rep->toString();
 } }
  
 Boolean CQLTerm::isSimple()  Boolean CQLTerm::isSimple()const
 { {
    return _rep->isSimple();    return _rep->isSimple();
 } }
  
 Boolean CQLTerm::isSimpleValue()  Boolean CQLTerm::isSimpleValue()const
 { {
    return _rep->isSimpleValue();    return _rep->isSimpleValue();
 } }
  
 Array<CQLFactor> CQLTerm::getFactors()  Array<CQLFactor> CQLTerm::getFactors()const
 { {
    return _rep->getFactors();    return _rep->getFactors();
 } }
  
 Array<FactorOpType> CQLTerm::getOperators()  Array<FactorOpType> CQLTerm::getOperators()const
 { {
    return _rep->getOperators();    return _rep->getOperators();
 } }


Legend:
Removed from v.1.1.2.10  
changed lines
  Added in v.1.1.2.11

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2