1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef BOOST_UNITS_IS_UNIT_HPP
- #define BOOST_UNITS_IS_UNIT_HPP
- #include <boost/mpl/bool.hpp>
- #include <boost/units/units_fwd.hpp>
- namespace boost {
- namespace units {
- template<class T>
- struct is_unit :
- public mpl::false_
- { };
- template<class Dim,class System>
- struct is_unit< unit<Dim,System> > :
- public mpl::true_
- { };
- }
- }
- #endif
|