(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.6 and 1.1.2.7

version 1.1.2.6, 2004/09/17 14:52:11 version 1.1.2.7, 2004/09/20 21:03:03
Line 13 
Line 13 
 #undef PEGASUS_ARRAY_T #undef PEGASUS_ARRAY_T
  
  
 CQLTerm::CQLTerm():_rep(0){  CQLTerm::CQLTerm(){
           _rep = new CQLTermRep();
 } }
  
 CQLTerm::CQLTerm(const CQLTerm& inTerm){ CQLTerm::CQLTerm(const CQLTerm& inTerm){
         _rep = inTerm._rep;          _rep = new CQLTermRep(inTerm._rep);
 } }
  
 CQLTerm::CQLTerm(CQLFactor theFactor) CQLTerm::CQLTerm(CQLFactor theFactor)
Line 71 
Line 71 
         _rep->applyScopes(inScope);         _rep->applyScopes(inScope);
 } }
  
   CQLTerm& CQLTerm::operator=(const CQLTerm& rhs){
           if(&rhs != this){
                   if(_rep) delete _rep;
                   _rep = new CQLTermRep(rhs._rep);
           }
           return *this;
   
   }
   
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.1.2.6  
changed lines
  Added in v.1.1.2.7

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2