#ifndef ISAAC_TOOLS_TO_STRING_HPP #define ISAAC_TOOLS_TO_STRING_HPP #include #include namespace isaac { namespace tools { template inline std::string to_string ( T const t ) { std::stringstream ss; ss << t; return ss.str(); } } } #endif