libcubescript/include/cubescript/cubescript_conf.hh

14 lines
389 B
C++
Raw Normal View History

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