(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.29 and 1.33

version 1.29, 2002/07/31 22:05:08 version 1.33, 2002/08/27 23:38:44
Line 61 
Line 61 
     Inc(_rep = x._rep);     Inc(_rep = x._rep);
 } }
  
 CIMInstance::CIMInstance(const CIMObject& x) throw(DynamicCastFailed)  CIMInstance::CIMInstance(const CIMObject& x) throw(DynamicCastFailedException)
 { {
     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))
         throw DynamicCastFailed();          throw DynamicCastFailedException();
     Inc(_rep);     Inc(_rep);
 } }
  
Line 124 
Line 124 
     return _rep->findQualifier(name);     return _rep->findQualifier(name);
 } }
  
 CIMQualifier CIMInstance::getQualifier(Uint32 pos)  CIMQualifier CIMInstance::getQualifier(Uint32 index)
 { {
     _checkRep();     _checkRep();
     return _rep->getQualifier(pos);      return _rep->getQualifier(index);
 } }
  
 CIMConstQualifier CIMInstance::getQualifier(Uint32 pos) const  CIMConstQualifier CIMInstance::getQualifier(Uint32 index) const
 { {
     _checkRep();     _checkRep();
     return _rep->getQualifier(pos);      return _rep->getQualifier(index);
 } }
  
 Uint32 CIMInstance::getQualifierCount() const Uint32 CIMInstance::getQualifierCount() const
Line 155 
Line 155 
     return _rep->findProperty(name);     return _rep->findProperty(name);
 } }
  
 CIMProperty CIMInstance::getProperty(Uint32 pos) throw(OutOfBounds)  CIMProperty CIMInstance::getProperty(Uint32 index) throw(IndexOutOfBoundsException)
 { {
     _checkRep();     _checkRep();
     return _rep->getProperty(pos);      return _rep->getProperty(index);
 } }
  
 CIMConstProperty CIMInstance::getProperty(Uint32 pos) const throw(OutOfBounds)  CIMConstProperty CIMInstance::getProperty(Uint32 index) const throw(IndexOutOfBoundsException)
 { {
     _checkRep();     _checkRep();
     return _rep->getProperty(pos);      return _rep->getProperty(index);
 } }
  
 void CIMInstance::removeProperty(Uint32 pos)  throw(OutOfBounds)  void CIMInstance::removeProperty(Uint32 index)  throw(IndexOutOfBoundsException)
 { {
     _checkRep();     _checkRep();
     _rep->removeProperty(pos);      _rep->removeProperty(index);
 } }
  
 Uint32 CIMInstance::getPropertyCount() const Uint32 CIMInstance::getPropertyCount() const
Line 196 
Line 196 
     return CIMInstance((CIMInstanceRep*)(_rep->clone()));     return CIMInstance((CIMInstanceRep*)(_rep->clone()));
 } }
  
 CIMObjectPath CIMInstance::getInstanceName(const CIMConstClass& cimClass) const  CIMObjectPath CIMInstance::buildPath(const CIMConstClass& cimClass) const
 { {
     _checkRep();     _checkRep();
     return _rep->getInstanceName(cimClass);      return _rep->buildPath(cimClass);
 } }
  
 String CIMInstance::toString() const String CIMInstance::toString() const
Line 211 
Line 211 
 void CIMInstance::_checkRep() const void CIMInstance::_checkRep() const
 { {
     if (!_rep)     if (!_rep)
         ThrowUninitializedObject();          throw UninitializedObjectException();
 } }
  
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
Line 235 
Line 235 
     Inc(_rep = x._rep);     Inc(_rep = x._rep);
 } }
  
 CIMConstInstance::CIMConstInstance(const CIMObject& x) throw(DynamicCastFailed)  CIMConstInstance::CIMConstInstance(const CIMObject& x) throw(DynamicCastFailedException)
 { {
     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))
         throw DynamicCastFailed();          throw DynamicCastFailedException();
     Inc(_rep);     Inc(_rep);
 } }
  
 CIMConstInstance::CIMConstInstance(const CIMConstObject& x) CIMConstInstance::CIMConstInstance(const CIMConstObject& x)
     throw(DynamicCastFailed)      throw(DynamicCastFailedException)
 { {
     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))
         throw DynamicCastFailed();          throw DynamicCastFailedException();
     Inc(_rep);     Inc(_rep);
 } }
  
Line 298 
Line 298 
     return _rep->findQualifier(name);     return _rep->findQualifier(name);
 } }
  
 CIMConstQualifier CIMConstInstance::getQualifier(Uint32 pos) const  CIMConstQualifier CIMConstInstance::getQualifier(Uint32 index) const
 { {
     _checkRep();     _checkRep();
     return _rep->getQualifier(pos);      return _rep->getQualifier(index);
 } }
  
 Uint32 CIMConstInstance::getQualifierCount() const Uint32 CIMConstInstance::getQualifierCount() const
Line 316 
Line 316 
     return _rep->findProperty(name);     return _rep->findProperty(name);
 } }
  
 CIMConstProperty CIMConstInstance::getProperty(Uint32 pos) const  CIMConstProperty CIMConstInstance::getProperty(Uint32 index) const
 { {
     _checkRep();     _checkRep();
     return _rep->getProperty(pos);      return _rep->getProperty(index);
 } }
  
 Uint32 CIMConstInstance::getPropertyCount() const Uint32 CIMConstInstance::getPropertyCount() const
Line 345 
Line 345 
     return CIMInstance((CIMInstanceRep*)(_rep->clone()));     return CIMInstance((CIMInstanceRep*)(_rep->clone()));
 } }
  
 CIMObjectPath CIMConstInstance::getInstanceName(const CIMConstClass& cimClass) const  CIMObjectPath CIMConstInstance::buildPath(const CIMConstClass& cimClass) const
 { {
     _checkRep();     _checkRep();
     return _rep->getInstanceName(cimClass);      return _rep->buildPath(cimClass);
 } }
  
 String CIMConstInstance::toString() const String CIMConstInstance::toString() const
Line 360 
Line 360 
 void CIMConstInstance::_checkRep() const void CIMConstInstance::_checkRep() const
 { {
     if (!_rep)     if (!_rep)
         ThrowUninitializedObject();          throw UninitializedObjectException();
 }  
   
   
 Boolean operator==(const CIMInstance& x, const CIMInstance& y)  
 {  
     return x.identical(y);  
 } }
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2