12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef BOOST_UNITS_TEMPERATURE_FAHRENHEIT_HPP
- #define BOOST_UNITS_TEMPERATURE_FAHRENHEIT_HPP
- #include <string>
- #include <boost/units/absolute.hpp>
- #include <boost/units/make_system.hpp>
- #include <boost/units/static_constant.hpp>
- #include <boost/units/base_units/temperature/fahrenheit.hpp>
- namespace boost {
- namespace units {
- namespace fahrenheit {
- typedef make_system<boost::units::temperature::fahrenheit_base_unit>::type system;
- typedef unit<temperature_dimension,system> temperature;
- BOOST_UNITS_STATIC_CONSTANT(degree,temperature);
- BOOST_UNITS_STATIC_CONSTANT(degrees,temperature);
- }
- }
- }
- #endif
|