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

Diff for /pegasus/src/Pegasus/Common/CIMInstance.cpp between version 1.43 and 1.44

version 1.43, 2006/11/10 18:14:57 version 1.44, 2007/09/03 11:27:02
Line 97 
Line 97 
  
 const CIMName& CIMInstance::getClassName() const const CIMName& CIMInstance::getClassName() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getClassName();     return _rep->getClassName();
 } }
  
 const CIMObjectPath& CIMInstance::getPath() const const CIMObjectPath& CIMInstance::getPath() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getPath();     return _rep->getPath();
 } }
  
 void CIMInstance::setPath (const CIMObjectPath & path) void CIMInstance::setPath (const CIMObjectPath & path)
 { {
     _checkRep ();      CheckRep(_rep);
     _rep->setPath (path);     _rep->setPath (path);
 } }
  
 CIMInstance& CIMInstance::addQualifier(const CIMQualifier& qualifier) CIMInstance& CIMInstance::addQualifier(const CIMQualifier& qualifier)
 { {
     _checkRep();      CheckRep(_rep);
     _rep->addQualifier(qualifier);     _rep->addQualifier(qualifier);
     return *this;     return *this;
 } }
  
 Uint32 CIMInstance::findQualifier(const CIMName& name) const Uint32 CIMInstance::findQualifier(const CIMName& name) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->findQualifier(name);     return _rep->findQualifier(name);
 } }
  
 CIMQualifier CIMInstance::getQualifier(Uint32 index) CIMQualifier CIMInstance::getQualifier(Uint32 index)
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getQualifier(index);     return _rep->getQualifier(index);
 } }
  
 CIMConstQualifier CIMInstance::getQualifier(Uint32 index) const CIMConstQualifier CIMInstance::getQualifier(Uint32 index) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getQualifier(index);     return _rep->getQualifier(index);
 } }
  
 void CIMInstance::removeQualifier(Uint32 index) void CIMInstance::removeQualifier(Uint32 index)
 { {
     _checkRep();      CheckRep(_rep);
     _rep->removeQualifier(index);     _rep->removeQualifier(index);
 } }
  
 Uint32 CIMInstance::getQualifierCount() const Uint32 CIMInstance::getQualifierCount() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getQualifierCount();     return _rep->getQualifierCount();
 } }
  
 CIMInstance& CIMInstance::addProperty(const CIMProperty& x) CIMInstance& CIMInstance::addProperty(const CIMProperty& x)
 { {
     _checkRep();      CheckRep(_rep);
     _rep->addProperty(x);     _rep->addProperty(x);
     return *this;     return *this;
 } }
  
 Uint32 CIMInstance::findProperty(const CIMName& name) const Uint32 CIMInstance::findProperty(const CIMName& name) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->findProperty(name);     return _rep->findProperty(name);
 } }
  
 CIMProperty CIMInstance::getProperty(Uint32 index) CIMProperty CIMInstance::getProperty(Uint32 index)
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getProperty(index);     return _rep->getProperty(index);
 } }
  
 CIMConstProperty CIMInstance::getProperty(Uint32 index) const CIMConstProperty CIMInstance::getProperty(Uint32 index) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getProperty(index);     return _rep->getProperty(index);
 } }
  
 void CIMInstance::removeProperty(Uint32 index) void CIMInstance::removeProperty(Uint32 index)
 { {
     _checkRep();      CheckRep(_rep);
     _rep->removeProperty(index);     _rep->removeProperty(index);
 } }
  
 Uint32 CIMInstance::getPropertyCount() const Uint32 CIMInstance::getPropertyCount() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getPropertyCount();     return _rep->getPropertyCount();
 } }
  
Line 194 
Line 194 
  
 Boolean CIMInstance::identical(const CIMConstInstance& x) const Boolean CIMInstance::identical(const CIMConstInstance& x) const
 { {
     x._checkRep();      CheckRep(x._rep);
     _checkRep();      CheckRep(_rep);
     return _rep->identical(x._rep);     return _rep->identical(x._rep);
 } }
  
Line 206 
Line 206 
  
 CIMObjectPath CIMInstance::buildPath(const CIMConstClass& cimClass) const CIMObjectPath CIMInstance::buildPath(const CIMConstClass& cimClass) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->buildPath(cimClass);     return _rep->buildPath(cimClass);
 } }
  
Line 220 
Line 220 
 void CIMInstance::filter(Boolean includeQualifiers, Boolean includeClassOrigin, void CIMInstance::filter(Boolean includeQualifiers, Boolean includeClassOrigin,
                         const CIMPropertyList& propertyList)                         const CIMPropertyList& propertyList)
 { {
     _checkRep();      CheckRep(_rep);
     _rep->filter(includeQualifiers, includeClassOrigin, propertyList);     _rep->filter(includeQualifiers, includeClassOrigin, propertyList);
 } }
  
Line 292 
Line 292 
  
 const CIMName& CIMConstInstance::getClassName() const const CIMName& CIMConstInstance::getClassName() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getClassName();     return _rep->getClassName();
 } }
  
 const CIMObjectPath& CIMConstInstance::getPath() const const CIMObjectPath& CIMConstInstance::getPath() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getPath();     return _rep->getPath();
 } }
  
 Uint32 CIMConstInstance::findQualifier(const CIMName& name) const Uint32 CIMConstInstance::findQualifier(const CIMName& name) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->findQualifier(name);     return _rep->findQualifier(name);
 } }
  
 CIMConstQualifier CIMConstInstance::getQualifier(Uint32 index) const CIMConstQualifier CIMConstInstance::getQualifier(Uint32 index) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getQualifier(index);     return _rep->getQualifier(index);
 } }
  
 Uint32 CIMConstInstance::getQualifierCount() const Uint32 CIMConstInstance::getQualifierCount() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getQualifierCount();     return _rep->getQualifierCount();
 } }
  
 Uint32 CIMConstInstance::findProperty(const CIMName& name) const Uint32 CIMConstInstance::findProperty(const CIMName& name) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->findProperty(name);     return _rep->findProperty(name);
 } }
  
 CIMConstProperty CIMConstInstance::getProperty(Uint32 index) const CIMConstProperty CIMConstInstance::getProperty(Uint32 index) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getProperty(index);     return _rep->getProperty(index);
 } }
  
 Uint32 CIMConstInstance::getPropertyCount() const Uint32 CIMConstInstance::getPropertyCount() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getPropertyCount();     return _rep->getPropertyCount();
 } }
  
Line 345 
Line 345 
  
 Boolean CIMConstInstance::identical(const CIMConstInstance& x) const Boolean CIMConstInstance::identical(const CIMConstInstance& x) const
 { {
     x._checkRep();      CheckRep(x._rep);
     _checkRep();      CheckRep(_rep);
     return _rep->identical(x._rep);     return _rep->identical(x._rep);
 } }
  
Line 357 
Line 357 
  
 CIMObjectPath CIMConstInstance::buildPath(const CIMConstClass& cimClass) const CIMObjectPath CIMConstInstance::buildPath(const CIMConstClass& cimClass) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->buildPath(cimClass);     return _rep->buildPath(cimClass);
 } }
  


Legend:
Removed from v.1.43  
changed lines
  Added in v.1.44

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2