WaveBlocksND
to_string.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 #include <sstream>
5 
6 
7 namespace waveblocks{
8  namespace utilities {
9  template<class T>
10  std::string to_string(T in) {
11  std::ostringstream strs;
12  strs << in;
13  return strs.str();
14  }
15  }
16 }
std::string to_string(T in)
Definition: to_string.hpp:10
Definition: coefficients_file_parser.cpp:10