// // to_string.h // OpenGLTemplate // // Created by Joshua Moerman on 8/18/11. // Copyright 2011 Vadovas. All rights reserved. // #ifndef OpenGLTemplate_to_string_h #define OpenGLTemplate_to_string_h #include #include // NOTE: workaround for the std::to_string in C++11 namespace std { template std::string to_string(T const & x){ std::stringstream ss; ss << x; return ss.str(); } } // end namespace std #endif // OpenGLTemplate_to_string_h