(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.32

version 1.29, 2002/07/31 22:05:08 version 1.32, 2002/08/20 17:39:37
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 155 
Line 155 
     return _rep->findProperty(name);     return _rep->findProperty(name);
 } }
  
 CIMProperty CIMInstance::getProperty(Uint32 pos) throw(OutOfBounds)  CIMProperty CIMInstance::getProperty(Uint32 pos) throw(IndexOutOfBoundsException)
 { {
     _checkRep();     _checkRep();
     return _rep->getProperty(pos);     return _rep->getProperty(pos);
 } }
  
 CIMConstProperty CIMInstance::getProperty(Uint32 pos) const throw(OutOfBounds)  CIMConstProperty CIMInstance::getProperty(Uint32 pos) const throw(IndexOutOfBoundsException)
 { {
     _checkRep();     _checkRep();
     return _rep->getProperty(pos);     return _rep->getProperty(pos);
 } }
  
 void CIMInstance::removeProperty(Uint32 pos)  throw(OutOfBounds)  void CIMInstance::removeProperty(Uint32 pos)  throw(IndexOutOfBoundsException)
 { {
     _checkRep();     _checkRep();
     _rep->removeProperty(pos);     _rep->removeProperty(pos);
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 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.32

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2