#ifndef TOSTRING_HPP_ #define TOSTRING_HPP_ #include #include using namespace std; template string toString(Temp t) { stringstream ss; ss << t; return ss.str(); } #endif /* TOSTRING_HPP_ */