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

Diff for /pegasus/src/Pegasus/Common/CIMObject.cpp between version 1.12 and 1.13

version 1.12, 2002/05/07 03:55:28 version 1.13, 2002/05/14 03:27:25
Line 206 
Line 206 
     return _rep->getPropertyCount();     return _rep->getPropertyCount();
 } }
  
 CIMObject::operator int() const  Boolean CIMObject::isNull() const
 { {
     return (_rep != 0);      return (_rep == 0)? true : false;
 } }
  
 Boolean CIMObject::identical(const CIMConstObject& x) const Boolean CIMObject::identical(const CIMConstObject& x) const
Line 390 
Line 390 
     return _rep->getPropertyCount();     return _rep->getPropertyCount();
 } }
  
 CIMConstObject::operator int() const  Boolean CIMConstObject::isNull() const
 { {
     return (_rep != 0);      return (_rep == 0)? true : false;
 } }
  
 void CIMConstObject::toXml(Array<Sint8>& out) const void CIMConstObject::toXml(Array<Sint8>& out) const


Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2