/*
* String.h
*
* Created on: 19.07.2012
* Author: Felix
*/
/**
* Use this as a replacement for std::to_string as MingW does not support it.
#ifndef DG_STRING_H_
#define DG_STRING_H_
#include <sstream>
#include <string>
typedef std::string String;
* Converts any value to a string.
* @param val Any variable.
* @return val converted to string.
template <typename T>
String
str(T val) {
std::stringstream out;
out << val;
return out.str();
}
* Converts floating point variable to string,
* @param val Any floating point variable.
* @param digits Number of decimal places to round to.
str(T val, int digits) {
out.precision(digits);
#endif /* DG_STRING_H_ */