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