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

Diff for /pegasus/src/Pegasus/Common/CIMParameter.cpp between version 1.28 and 1.29

version 1.28, 2006/11/10 18:14:57 version 1.29, 2007/09/03 11:27:02
Line 89 
Line 89 
  
 const CIMName& CIMParameter::getName() const const CIMName& CIMParameter::getName() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getName();     return _rep->getName();
 } }
  
 void CIMParameter::setName(const CIMName& name) void CIMParameter::setName(const CIMName& name)
 { {
     _checkRep();      CheckRep(_rep);
     _rep->setName(name);     _rep->setName(name);
 } }
  
 Boolean CIMParameter::isArray() const Boolean CIMParameter::isArray() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->isArray();     return _rep->isArray();
 } }
  
 Uint32 CIMParameter::getArraySize() const Uint32 CIMParameter::getArraySize() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getArraySize();     return _rep->getArraySize();
 } }
  
 const CIMName& CIMParameter::getReferenceClassName() const const CIMName& CIMParameter::getReferenceClassName() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getReferenceClassName();     return _rep->getReferenceClassName();
 } }
  
 CIMType CIMParameter::getType() const CIMType CIMParameter::getType() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getType();     return _rep->getType();
 } }
  
 CIMParameter& CIMParameter::addQualifier(const CIMQualifier& x) CIMParameter& CIMParameter::addQualifier(const CIMQualifier& x)
 { {
     _checkRep();      CheckRep(_rep);
     _rep->addQualifier(x);     _rep->addQualifier(x);
     return *this;     return *this;
 } }
  
 Uint32 CIMParameter::findQualifier(const CIMName& name) const Uint32 CIMParameter::findQualifier(const CIMName& name) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->findQualifier(name);     return _rep->findQualifier(name);
 } }
  
 CIMQualifier CIMParameter::getQualifier(Uint32 index) CIMQualifier CIMParameter::getQualifier(Uint32 index)
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getQualifier(index);     return _rep->getQualifier(index);
 } }
  
 CIMConstQualifier CIMParameter::getQualifier(Uint32 index) const CIMConstQualifier CIMParameter::getQualifier(Uint32 index) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getQualifier(index);     return _rep->getQualifier(index);
 } }
  
 void CIMParameter::removeQualifier (Uint32 index) void CIMParameter::removeQualifier (Uint32 index)
 { {
     _checkRep ();      CheckRep(_rep);
     _rep->removeQualifier (index);     _rep->removeQualifier (index);
 } }
  
 Uint32 CIMParameter::getQualifierCount() const Uint32 CIMParameter::getQualifierCount() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getQualifierCount();     return _rep->getQualifierCount();
 } }
  
Line 167 
Line 167 
  
 Boolean CIMParameter::identical(const CIMConstParameter& x) const Boolean CIMParameter::identical(const CIMConstParameter& x) const
 { {
     x._checkRep();      CheckRep(x._rep);
     _checkRep();      CheckRep(_rep);
     return _rep->identical(x._rep);     return _rep->identical(x._rep);
 } }
  
Line 243 
Line 243 
  
 const CIMName& CIMConstParameter::getName() const const CIMName& CIMConstParameter::getName() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getName();     return _rep->getName();
 } }
  
 Boolean CIMConstParameter::isArray() const Boolean CIMConstParameter::isArray() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->isArray();     return _rep->isArray();
 } }
  
 Uint32 CIMConstParameter::getArraySize() const Uint32 CIMConstParameter::getArraySize() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getArraySize();     return _rep->getArraySize();
 } }
  
 const CIMName& CIMConstParameter::getReferenceClassName() const const CIMName& CIMConstParameter::getReferenceClassName() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getReferenceClassName();     return _rep->getReferenceClassName();
 } }
  
 CIMType CIMConstParameter::getType() const CIMType CIMConstParameter::getType() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getType();     return _rep->getType();
 } }
  
 Uint32 CIMConstParameter::findQualifier(const CIMName& name) const Uint32 CIMConstParameter::findQualifier(const CIMName& name) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->findQualifier(name);     return _rep->findQualifier(name);
 } }
  
 CIMConstQualifier CIMConstParameter::getQualifier(Uint32 index) const CIMConstQualifier CIMConstParameter::getQualifier(Uint32 index) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getQualifier(index);     return _rep->getQualifier(index);
 } }
  
 Uint32 CIMConstParameter::getQualifierCount() const Uint32 CIMConstParameter::getQualifierCount() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getQualifierCount();     return _rep->getQualifierCount();
 } }
  
Line 296 
Line 296 
  
 Boolean CIMConstParameter::identical(const CIMConstParameter& x) const Boolean CIMConstParameter::identical(const CIMConstParameter& x) const
 { {
     x._checkRep();      CheckRep(x._rep);
     _checkRep();      CheckRep(_rep);
     return _rep->identical(x._rep);     return _rep->identical(x._rep);
 } }
  


Legend:
Removed from v.1.28  
changed lines
  Added in v.1.29

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2