// Example 13-35: Converting a value to a string.
#include <ostream>
#include <sstream>
#include <string>

template<typename T>
std::string tostring(const T& x)
{
  std::ostringstream out;
  out << x;
  return out.str();
}
