(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.30 and 1.30.10.1

version 1.30, 2003/11/05 04:10:41 version 1.30.10.1, 2004/11/12 17:48:28
Line 188 
Line 188 
     return (_rep == 0)? true : false;     return (_rep == 0)? true : false;
 } }
  
   String CIMObject::toString () const
   {
       Array<Sint8> out;
   
       _checkRep();
   //  PEP says to use toMof for "human readable", but testcases seem to expect XML.
   //  _rep->toMof(out);
       _rep->toXml(out);
   
       return out.getData();
   }
   
 Boolean CIMObject::isClass () const Boolean CIMObject::isClass () const
 { {
     try     try
Line 342 
Line 354 
     return (_rep == 0)? true : false;     return (_rep == 0)? true : false;
 } }
  
   String CIMConstObject::toString () const
   {
       Array<Sint8> out;
   
       _checkRep();
       _rep->toMof(out);
   
       return out.getData();
   }
   
 Boolean CIMConstObject::isClass() const Boolean CIMConstObject::isClass() const
 { {
     try     try


Legend:
Removed from v.1.30  
changed lines
  Added in v.1.30.10.1

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2