spdlog/example/utils.h

36 lines
607 B
C
Raw Normal View History

2015-11-28 11:24:20 -05:00
//
// Copyright(c) 2015 Gabi Melman.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
//
2014-10-31 21:20:54 -04:00
2014-01-25 08:52:10 -05:00
#pragma once
#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
{
2014-12-20 19:47:04 -05:00
static std::locale loc("");
std::stringstream ss;
ss.imbue(loc);
ss << value;
return ss.str();
2014-01-25 08:52:10 -05:00
}
2014-03-01 07:06:58 -05:00
template<>
inline std::string format(const double & value)
2014-03-01 07:06:58 -05:00
{
2014-12-20 19:47:04 -05:00
static std::locale loc("");
std::stringstream ss;
ss.imbue(loc);
ss << std::fixed << std::setprecision(1) << value;
return ss.str();
2014-03-01 07:06:58 -05:00
}
2014-01-28 21:08:58 -05:00
}