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

Diff for /pegasus/src/Pegasus/Common/CIMValue.cpp between version 1.2 and 1.3

version 1.2, 2001/02/26 04:33:28 version 1.3, 2001/03/04 21:57:34
Line 23 
Line 23 
 // Author: // Author:
 // //
 // $Log$ // $Log$
   // Revision 1.3  2001/03/04 21:57:34  bob
   // Changed print methods to take a stream instead of hardcoded cout
   //
 // Revision 1.2  2001/02/26 04:33:28  mike // Revision 1.2  2001/02/26 04:33:28  mike
 // Fixed many places where cim names were be compared with operator==(String,String). // Fixed many places where cim names were be compared with operator==(String,String).
 // Changed all of these to use CIMName::equal() // Changed all of these to use CIMName::equal()
Line 758 
Line 761 
     }     }
 } }
  
 void CIMValue::print() const  void CIMValue::print(std::ostream &os) const
 { {
     Array<Sint8> tmp;     Array<Sint8> tmp;
     toXml(tmp);     toXml(tmp);
     tmp.append('\0');     tmp.append('\0');
     std::cout << tmp.getData() << std::endl;      os << tmp.getData() << std::endl;
 } }
  
 void CIMValue::set(Boolean x) void CIMValue::set(Boolean x)


Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2