#ifndef MIXEDTOOLS_SEEN #define MIXEDTOOLS_SEEN #include #include #include class mixedTools { public: static string doubleToString(double x) { std::ostringstream ostr; ostr << x; return ostr.str(); } static string intToString(int x) { std::ostringstream ostr; ostr << x; return ostr.str(); } }; #endif