#include <sstream>template <class T>inline std::string ToString (const T& t){ std::stringstream ss; ss << t; return(ss.str());}
Labels: C++
posted by Brian at 7/31/2008 12:36:00 AM
Post a Comment
0 Comments:
Post a Comment
<< Home