|
|
public: | public: |
static wstring FromNumber (double number); | static wstring FromNumber (double number); |
static wstring FromNumber (int number); | static wstring FromNumber (int number); |
|
#if __WORDSIZE == 32 |
static wstring FromNumber (int64 number); | static wstring FromNumber (int64 number); |
|
#endif |
static wstring FromNumber (long number); | static wstring FromNumber (long number); |
static wstring FromNumber (unsigned int number); | static wstring FromNumber (unsigned int number); |
static wstring FromNumber (unsigned long number); | static wstring FromNumber (unsigned long number); |
|
#if __WORDSIZE == 32 |
static wstring FromNumber (uint64 number); | static wstring FromNumber (uint64 number); |
|
#endif |
static string GetTrailingNumber (const string &str); | static string GetTrailingNumber (const string &str); |
static string GetTypeName (const type_info &typeInfo); | static string GetTypeName (const type_info &typeInfo); |
static wstring QuoteSpaces (const wstring &str); | static wstring QuoteSpaces (const wstring &str); |