| 77 | |
| 78 | // Converts a number to a string |
| 79 | template<typename T> inline std::wstring ToString(const T& val) |
| 80 | { |
| 81 | std::wostringstream stream; |
| 82 | if(!(stream << val)) |
| 83 | throw Exception(L"Error converting value to string"); |
| 84 | return stream.str(); |
| 85 | } |
| 86 | |
| 87 | // Converts a number to an ansi string |
| 88 | template<typename T> inline std::string ToAnsiString(const T& val) |