Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 10:01:47

0001 // Boost.Units - A C++ library for zero-overhead dimensional analysis and 
0002 // unit/quantity manipulation and conversion
0003 //
0004 // Copyright (C) 2003-2008 Matthias Christian Schabel
0005 // Copyright (C) 2008 Steven Watanabe
0006 //
0007 // Distributed under the Boost Software License, Version 1.0. (See
0008 // accompanying file LICENSE_1_0.txt or copy at
0009 // http://www.boost.org/LICENSE_1_0.txt)
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 } // namespace celsius
0035         
0036 } // namespace units
0037 
0038 } // namespace boost
0039 
0040 #endif // BOOST_UNITS_TEMPERATURE_CELSIUS_HPP