pe-parse/parser-library/to_string.h

14 lines
250 B
C
Raw Normal View History

2013-11-22 19:28:04 -05:00
#ifndef _TO_STRING_H
#define _TO_STRING_H
#include <sstream>
namespace peparse {
2013-11-22 19:28:04 -05:00
template <class T>
2017-03-31 17:01:20 +02:00
static std::string to_string(T t, std::ios_base &(*f)(std::ios_base &) ) {
std::ostringstream oss;
oss << f << t;
return oss.str();
2013-11-22 19:28:04 -05:00
}
}
2013-11-22 19:28:04 -05:00
#endif