File indexing completed on 2025-01-18 09:53:14
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef BOOST_UNITS_SOLID_ANGLE_BASE_DIMENSION_HPP
0012 #define BOOST_UNITS_SOLID_ANGLE_BASE_DIMENSION_HPP
0013
0014 #include <boost/units/config.hpp>
0015 #include <boost/units/base_dimension.hpp>
0016
0017 namespace boost {
0018
0019 namespace units {
0020
0021
0022 struct solid_angle_base_dimension :
0023 boost::units::base_dimension<solid_angle_base_dimension,-1>
0024 { };
0025
0026 }
0027
0028 }
0029
0030 #if BOOST_UNITS_HAS_BOOST_TYPEOF
0031
0032 #include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP()
0033
0034 BOOST_TYPEOF_REGISTER_TYPE(boost::units::solid_angle_base_dimension)
0035
0036 #endif
0037
0038 namespace boost {
0039
0040 namespace units {
0041
0042
0043 typedef solid_angle_base_dimension::dimension_type solid_angle_dimension;
0044
0045 }
0046
0047 }
0048
0049 #endif