File indexing completed on 2025-01-30 10:01:47
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef BOOST_UNITS_TEMPERATURE_CELSIUS_HPP
0012 #define BOOST_UNITS_TEMPERATURE_CELSIUS_HPP
0013
0014 #include <string>
0015
0016 #include <boost/units/absolute.hpp>
0017 #include <boost/units/static_constant.hpp>
0018 #include <boost/units/make_system.hpp>
0019 #include <boost/units/base_units/temperature/celsius.hpp>
0020
0021 namespace boost {
0022
0023 namespace units {
0024
0025 namespace celsius {
0026
0027 typedef make_system<boost::units::temperature::celsius_base_unit>::type system;
0028
0029 typedef unit<temperature_dimension,system> temperature;
0030
0031 BOOST_UNITS_STATIC_CONSTANT(degree,temperature);
0032 BOOST_UNITS_STATIC_CONSTANT(degrees,temperature);
0033
0034 }
0035
0036 }
0037
0038 }
0039
0040 #endif