2016-10-01 09:55:13 -04:00
|
|
|
//
|
|
|
|
// Copyright(c) 2015 Gabi Melman.
|
|
|
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
|
|
|
//
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <iomanip>
|
|
|
|
#include <locale>
|
2018-03-09 08:26:33 -05:00
|
|
|
#include <sstream>
|
2016-10-01 09:55:13 -04:00
|
|
|
|
2018-03-09 08:26:33 -05:00
|
|
|
namespace utils {
|
2016-10-01 09:55:13 -04:00
|
|
|
|
2018-03-16 11:13:50 -04:00
|
|
|
template<typename T> inline std::string format(const T &value)
|
2016-10-01 09:55:13 -04:00
|
|
|
{
|
|
|
|
static std::locale loc("");
|
|
|
|
std::stringstream ss;
|
|
|
|
ss.imbue(loc);
|
|
|
|
ss << value;
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
2018-03-16 11:13:50 -04:00
|
|
|
template<> inline std::string format(const double &value)
|
2016-10-01 09:55:13 -04:00
|
|
|
{
|
|
|
|
static std::locale loc("");
|
|
|
|
std::stringstream ss;
|
|
|
|
ss.imbue(loc);
|
|
|
|
ss << std::fixed << std::setprecision(1) << value;
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
2018-03-09 08:26:33 -05:00
|
|
|
} // namespace utils
|