123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef BOOST_UNITS_IS_QUANTITY_OF_SYSTEM_HPP
- #define BOOST_UNITS_IS_QUANTITY_OF_SYSTEM_HPP
- #include <boost/mpl/bool.hpp>
- #include <boost/units/units_fwd.hpp>
- #include <boost/units/is_unit_of_system.hpp>
- namespace boost {
- namespace units {
- template<class T,class System>
- struct is_quantity_of_system :
- public mpl::false_
- { };
- template<class Unit,class Y,class System>
- struct is_quantity_of_system< quantity< Unit,Y>,System > :
- public is_unit_of_system<Unit, System>
- { };
- }
- }
- #endif
|