spdlog/example/utils.h

34 lines
552 B
C
Raw Normal View History

2014-01-25 08:52:10 -05:00
#pragma once
#include <functional>
#include <chrono>
#include <iostream>
#include <sstream>
#include <iomanip>
#include <locale>
2014-03-06 17:52:50 -05:00
namespace utils
{
2014-01-25 08:52:10 -05:00
template<typename T>
inline std::string format(const T& value)
2014-01-25 08:52:10 -05:00
{
static std::locale loc("");
std::stringstream ss;
ss.imbue(loc);
ss << value;
return ss.str();
}
2014-03-01 07:06:58 -05:00
template<>
inline std::string format(const double & value)
2014-03-01 07:06:58 -05:00
{
static std::locale loc("");
std::stringstream ss;
ss.imbue(loc);
ss << std::fixed << std::setprecision(1) << value;
return ss.str();
}
2014-01-28 21:08:58 -05:00
}