StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
Misc.hh
1 #ifndef MISC_HH
2 #define MISC_HH
3 
4 #include <sstream>
5 
6 template <class T>
7 inline std::string to_string (const T& t)
8 {
9  std::stringstream ss;
10  ss << t;
11  return ss.str();
12 }
13 
14 #endif // MISC_HH