#include <vector>
#include <utility>
-#include <boost/scoped_ptr.hpp>
-
struct yajl_gen_t;
namespace STG
public:
explicit NumberGen(const std::string& value) : m_value(value) {}
template <typename T>
- explicit NumberGen(const T& value) : m_value(x2str(value)) {}
+ explicit NumberGen(const T& value) : m_value(std::to_string(value)) {}
virtual void run(yajl_gen_t* handle) const;
private:
std::string m_value;