#ifndef TO_STRING_H #define TO_STRING_H #include #include namespace tostr { template std::string to_string(T value) { std::ostringstream os ; os << value ; return os.str() ; } } using namespace tostr; #endif // TO_STRING_H