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

Diff for /pegasus/src/Pegasus/CQL/CQLIdentifier.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/30 18:34:38
Line 27 
Line 27 
         parse(identifier);         parse(identifier);
 } }
  
   CQLIdentifier::CQLIdentifier(const CQLIdentifier& id){
           _name = id.getName();
           _indices = id.getSubRanges();
           _symbolicConstant = id.getSymbolicConstantName();
           _scope = id.getScope();
           _isWildcard = id.isWildcard();
   }
   
 const CIMName& CQLIdentifier::getName()const const CIMName& CQLIdentifier::getName()const
 { {
         return _name;         return _name;
Line 67 
Line 75 
         return (_scope != String::EMPTY);         return (_scope != String::EMPTY);
 } }
  
   void CQLIdentifier::applyScope(String scope)
   {
           _scope = scope;
   }
   
   
 Boolean CQLIdentifier::operator==(const CIMName &rhs)const{ Boolean CQLIdentifier::operator==(const CIMName &rhs)const{
         if(_name == rhs) return true;         if(_name == rhs) return true;
         return false;         return false;


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