StRoot
1
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Groups
Pages
StJetMaker
test
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
Generated by
1.8.5