12345678910111213141516171819202122232425262728293031323334 |
- #ifndef BOOST_UNITS_IS_DIMENSIONLESS_UNIT_HPP
- #define BOOST_UNITS_IS_DIMENSIONLESS_UNIT_HPP
- #include <boost/units/is_unit_of_dimension.hpp>
- #include <boost/units/units_fwd.hpp>
- namespace boost {
- namespace units {
- template<class T>
- struct is_dimensionless_unit :
- public is_unit_of_dimension<T,dimensionless_type>
- { };
- }
- }
- #endif
|