#include <string>
#include <sstream>
#include <iostream>
Go to the source code of this file.
Functions |
| void | debug (std::string message) |
| | Debugging/logging messages.
|
| template<class T > |
| std::string | toString (T t, std::ios_base &(*f)(std::ios_base &)) |
| | Convert a type into a string in a base For example: to_string<long>(123456, std::oct) returns the string "361100".
|
Function Documentation
| void debug |
( |
std::string |
message | ) |
|
Debugging/logging messages.
Definition at line 30 of file MoUT.hpp.
template<class T >
| std::string toString |
( |
T |
t, |
|
|
std::ios_base &(*)(std::ios_base &) |
f |
|
) |
| |
Convert a type into a string in a base For example: to_string<long>(123456, std::oct) returns the string "361100".
Definition at line 20 of file MoUT.hpp.