10.22 ToString

std::string ToString(const unsigned short& x)
std::string ToString(const unsigned int&   x)
std::string ToString(const OEULongLong&    x)
std::string ToString(const short&          x)
std::string ToString(const int&            x)
std::string ToString(const OELongLong&     x)
std::string ToString(const double&         x)
std::string ToString(const float&          x)

These are inlined functions which are equivalent to calling OESystem::OENumberToString(x).

std::string ToString(const bool& x)

This function returns the string "true" if x is true, otherwise the function returns the string "false".

std::string ToString(const std::string& x)

This function returns a new string that equals the specified string x.