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

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

version 1.2, 2008/11/25 23:45:21 version 1.3, 2008/11/26 06:22:15
Line 81 
Line 81 
 } }
  
 PEGASUS_TEMPLATE_SPECIALIZATION PEGASUS_TEMPLATE_SPECIALIZATION
 static void _print(ostream& os, const Boolean& x)  void _print(ostream& os, const Boolean& x)
 { {
     os << (x ? "true" : "false");     os << (x ? "true" : "false");
 } }
  
 PEGASUS_TEMPLATE_SPECIALIZATION PEGASUS_TEMPLATE_SPECIALIZATION
 static void _print(ostream& os, const Uint64& x)  void _print(ostream& os, const Uint64& x)
 { {
     char buf[32];     char buf[32];
     sprintf(buf, "%" PEGASUS_64BIT_CONVERSION_WIDTH "u", x);     sprintf(buf, "%" PEGASUS_64BIT_CONVERSION_WIDTH "u", x);
Line 95 
Line 95 
 } }
  
 PEGASUS_TEMPLATE_SPECIALIZATION PEGASUS_TEMPLATE_SPECIALIZATION
 static void _print(ostream& os, const Sint64& x)  void _print(ostream& os, const Sint64& x)
 { {
     char buf[32];     char buf[32];
     sprintf(buf, "%" PEGASUS_64BIT_CONVERSION_WIDTH "d", x);     sprintf(buf, "%" PEGASUS_64BIT_CONVERSION_WIDTH "d", x);
Line 103 
Line 103 
 } }
  
 PEGASUS_TEMPLATE_SPECIALIZATION PEGASUS_TEMPLATE_SPECIALIZATION
 static void _print(ostream& os, const Char16& x)  void _print(ostream& os, const Char16& x)
 { {
     os << Uint16(x);     os << Uint16(x);
 } }
  
 PEGASUS_TEMPLATE_SPECIALIZATION PEGASUS_TEMPLATE_SPECIALIZATION
 static void _print(ostream& os, const CIMDateTime& x)  void _print(ostream& os, const CIMDateTime& x)
 { {
     os << x.toString();     os << x.toString();
 } }


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