#include <sstream>
#include <iostream>
Go to the source code of this file.
|
template<class T > |
std::string | toString (const T &aT) |
|
template<class T > |
std::string | toString (const std::pair< T, T > &aT) |
|
template<class T >
std::string toString |
( |
const T & |
aT | ) |
|
Definition at line 6 of file ToString.h.
7 std::ostringstream oss;
template<class T >
std::string toString |
( |
const std::pair< T, T > & |
aT | ) |
|
Definition at line 12 of file ToString.h.
13 std::ostringstream oss;
14 oss <<
"(" << aT.first <<
", " << aT.second <<
")";