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