(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.17 and 1.18

version 1.17, 2002/05/07 03:55:28 version 1.18, 2002/05/14 03:27:25
Line 188 
Line 188 
     return _rep->getPropertyCount();     return _rep->getPropertyCount();
 } }
  
 CIMInstance::operator int() const  Boolean CIMInstance::isNull() const
 { {
     return (_rep != 0);      return (_rep == 0)? true : false;
 } }
  
 Boolean CIMInstance::identical(const CIMConstInstance& x) const Boolean CIMInstance::identical(const CIMConstInstance& x) const
Line 381 
Line 381 
     return _rep->getPropertyCount();     return _rep->getPropertyCount();
 } }
  
 CIMConstInstance::operator int() const  Boolean CIMConstInstance::isNull() const
 { {
     return (_rep != 0);      return (_rep == 0)? true : false;
 } }
  
 void CIMConstInstance::toXml(Array<Sint8>& out) const void CIMConstInstance::toXml(Array<Sint8>& out) const
Line 428 
Line 428 
         ThrowUninitializedHandle();         ThrowUninitializedHandle();
 } }
  
   
   Boolean operator==(const CIMInstance& x, const CIMInstance& y)
   {
       return x.identical(y);
   }
   
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2