123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef BOOST_UNITS_IS_DIM_HPP
- #define BOOST_UNITS_IS_DIM_HPP
- #include <boost/mpl/bool.hpp>
- #include <boost/units/units_fwd.hpp>
- namespace boost {
- namespace units {
- template<typename T>
- struct is_dim :
- public mpl::false_
- { };
- template<typename T,typename V>
- struct is_dim< dim<T,V> > :
- public mpl::true_
- { };
- }
- }
- #endif
|