Warning, file /include/boost/units/is_quantity_of_system.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef BOOST_UNITS_IS_QUANTITY_OF_SYSTEM_HPP
0012 #define BOOST_UNITS_IS_QUANTITY_OF_SYSTEM_HPP
0013
0014
0015
0016
0017
0018
0019 #include <boost/mpl/bool.hpp>
0020 #include <boost/units/units_fwd.hpp>
0021 #include <boost/units/is_unit_of_system.hpp>
0022
0023 namespace boost {
0024
0025 namespace units {
0026
0027
0028 template<class T,class System>
0029 struct is_quantity_of_system :
0030 public mpl::false_
0031 { };
0032
0033 template<class Unit,class Y,class System>
0034 struct is_quantity_of_system< quantity< Unit,Y>,System > :
0035 public is_unit_of_system<Unit, System>
0036 { };
0037
0038 }
0039
0040 }
0041
0042 #endif