Terminus
tostring.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 #include <sstream>
5 
6 template <typename T>
7 std::string toString(const T &value)
8 {
9  std::stringstream stream;
10  stream << value;
11  return stream.str();
12 }
std::string toString(const T &value)
Definition: tostring.h:7