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

version 1.31, 2004/10/17 20:39:16 version 1.33, 2005/01/16 02:24:35
Line 30 
Line 30 
 // Modified By: Roger Kumpf, Hewlett-Packard Company (roger_kumpf@hp.com) // Modified By: Roger Kumpf, Hewlett-Packard Company (roger_kumpf@hp.com)
 //              Carol Ann Krug Graves, Hewlett-Packard Company //              Carol Ann Krug Graves, Hewlett-Packard Company
 //                  (carolann_graves@hp.com) //                  (carolann_graves@hp.com)
   //              Dave Sudlik, IBM (dsudlik@us.ibm.com)
   //              David Dillard, VERITAS Software Corp.
   //                  (david.dillard@veritas.com)
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
Line 190 
Line 193 
     return (_rep == 0)? true : false;     return (_rep == 0)? true : false;
 } }
  
   String CIMObject::toString () const
   {
       Array<char> out;
   
       _checkRep();
       _rep->toXml(out);
   
       return out.getData();
   }
   
 Boolean CIMObject::isClass () const Boolean CIMObject::isClass () const
 { {
     try     try
Line 344 
Line 357 
     return (_rep == 0)? true : false;     return (_rep == 0)? true : false;
 } }
  
   String CIMConstObject::toString () const
   {
       Array<char> out;
   
       _checkRep();
       _rep->toXml(out);
   
       return out.getData();
   }
   
 Boolean CIMConstObject::isClass() const Boolean CIMConstObject::isClass() const
 { {
     try     try


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2