2015-11-29 00:24:20 +08:00
|
|
|
//
|
|
|
|
// Copyright(c) 2015 Gabi Melman.
|
|
|
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
|
|
|
//
|
2014-11-01 09:20:54 +08:00
|
|
|
|
2014-01-25 21:52:10 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
#include <iomanip>
|
|
|
|
#include <locale>
|
|
|
|
|
2014-03-07 06:52:50 +08:00
|
|
|
namespace utils
|
|
|
|
{
|
2014-01-25 21:52:10 +08:00
|
|
|
|
|
|
|
template<typename T>
|
2014-10-24 06:59:39 +08:00
|
|
|
inline std::string format(const T& value)
|
2014-01-25 21:52:10 +08:00
|
|
|
{
|
2014-12-21 08:47:04 +08:00
|
|
|
static std::locale loc("");
|
|
|
|
std::stringstream ss;
|
|
|
|
ss.imbue(loc);
|
|
|
|
ss << value;
|
|
|
|
return ss.str();
|
2014-01-25 21:52:10 +08:00
|
|
|
}
|
|
|
|
|
2014-03-01 20:06:58 +08:00
|
|
|
template<>
|
2014-10-24 06:59:39 +08:00
|
|
|
inline std::string format(const double & value)
|
2014-03-01 20:06:58 +08:00
|
|
|
{
|
2014-12-21 08:47:04 +08:00
|
|
|
static std::locale loc("");
|
|
|
|
std::stringstream ss;
|
|
|
|
ss.imbue(loc);
|
|
|
|
ss << std::fixed << std::setprecision(1) << value;
|
|
|
|
return ss.str();
|
2014-03-01 20:06:58 +08:00
|
|
|
}
|
|
|
|
|
2014-01-29 10:08:58 +08:00
|
|
|
}
|