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

Diff for /pegasus/src/Pegasus/Common/StringConversion.h between version 1.6 and 1.7

version 1.6, 2009/12/15 11:39:34 version 1.7, 2011/01/25 10:59:52
Line 107 
Line 107 
     */     */
     static Boolean decimalStringToUint64(     static Boolean decimalStringToUint64(
         const char* stringValue,         const char* stringValue,
         Uint64& x);          Uint64& x,
           Boolean allowLeadingZeros=false);
  
     /**     /**
         Converts a character string to a Uint64 value according to the DMTF         Converts a character string to a Uint64 value according to the DMTF
Line 120 
Line 121 
     */     */
     static Boolean octalStringToUint64(     static Boolean octalStringToUint64(
         const char* stringValue,         const char* stringValue,
         Uint64& x);          Uint64& x,
           Boolean allowLeadingZeros = false);
  
     /**     /**
         Converts a character string to a Uint64 value according to the DMTF         Converts a character string to a Uint64 value according to the DMTF
Line 133 
Line 135 
     */     */
     static Boolean hexStringToUint64(     static Boolean hexStringToUint64(
         const char* stringValue,         const char* stringValue,
         Uint64& x);          Uint64& x,
           Boolean allowLeadingZeros = false);
  
     /**     /**
         Converts a character string to a Uint64 value according to the DMTF         Converts a character string to a Uint64 value according to the DMTF
Line 146 
Line 149 
     */     */
     static Boolean binaryStringToUint64(     static Boolean binaryStringToUint64(
         const char* stringValue,         const char* stringValue,
         Uint64& x);          Uint64& x,
           Boolean allowLeadingZeros = false);
  
     /**     /**
         Checks whether a specified Uint64 value will fit within a specified         Checks whether a specified Uint64 value will fit within a specified
Line 174 
Line 178 
     */     */
     static Boolean stringToSint64(     static Boolean stringToSint64(
         const char* stringValue,         const char* stringValue,
         Boolean (*uint64Converter)(const char*, Uint64&),          Boolean (*uint64Converter)(const char*, Uint64&,Boolean),
         Sint64& x);         Sint64& x);
  
     /**     /**


Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2