pe-parse/parser-library/to_string.h
2013-11-22 19:28:04 -05:00

13 lines
233 B
C++

#ifndef _TO_STRING_H
#define _TO_STRING_H
#include <sstream>
template <class T>
static
std::string to_string(T t, std::ios_base & (*f)(std::ios_base&)) {
std::ostringstream oss;
oss << f << t;
return oss.str();
}
#endif