lsnes/include/library/mathexpr-format.hpp

17 lines
477 B
C++
Raw Normal View History

2014-01-10 12:09:19 +02:00
#ifndef _library__mathexpr_format__hpp__included__
#define _library__mathexpr_format__hpp__included__
#include "mathexpr.hpp"
2014-05-14 11:43:25 +03:00
namespace mathexpr
{
std::string format_bool(bool v, _format fmt);
std::string format_unsigned(uint64_t v, _format fmt);
std::string format_signed(int64_t v, _format fmt);
std::string format_float(double v, _format fmt);
std::string format_complex(double vr, double vi, _format fmt);
std::string format_string(std::string v, _format fmt);
}
2014-01-10 12:09:19 +02:00
#endif