libcubescript/include/cubescript/cubescript_conf.hh

14 lines
389 B
C++
Raw Normal View History

2016-08-21 00:34:03 +00:00
#ifndef LIBCUBESCRIPT_CUBESCRIPT_CONF_HH
#define LIBCUBESCRIPT_CUBESCRIPT_CONF_HH
2021-03-23 22:32:25 +00:00
namespace cubescript {
2021-03-23 22:29:32 +00:00
using integer_type = int;
using float_type = float;
2016-08-21 00:34:03 +00:00
2021-03-23 22:29:32 +00:00
constexpr auto const INT_FORMAT = "%d";
constexpr auto const FLOAT_FORMAT = "%.7g";
constexpr auto const ROUND_FLOAT_FORMAT = "%.1f";
2021-03-23 22:32:25 +00:00
} /* namespace cubescript */
2016-08-21 00:34:03 +00:00
#endif /* LIBCUBESCRIPT_CUBESCRIPT_CONF_HH */