2017-01-02 23:19:11 +01:00

26 lines
1.1 KiB
C++

#ifndef NALL_STRING_CAST_HPP
#define NALL_STRING_CAST_HPP
namespace nall {
//this is needed, as C++0x does not support explicit template specialization inside classes
template<> inline string to_string<bool> (const bool& v) { return v ? "true" : "false"; }
template<> inline string to_string<signed int> (const signed int& v) { return integer(v); }
template<> inline string to_string<unsigned int> (const unsigned int& v) { return decimal(v); }
template<> inline string to_string<double> (const double& v) { return fp(v); }
template<> inline string to_string<char*> (char * const & v) { return v; }
template<> inline string to_string<string> (const string& v) { return v; }
template<typename T> string& string::operator= (const T& value) { return assign(to_string(value)); }
template<typename T> string& string::operator<<(const T& value) { return append(to_string(value)); }
template<typename T> lstring& lstring::operator<<(const T& value) {
operator[](size()).assign(to_string(value));
return *this;
}
}
#endif