12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef BOOST_UNITS_DIMENSIONLESS_UNIT_HPP
- #define BOOST_UNITS_DIMENSIONLESS_UNIT_HPP
- #include <boost/units/dimensionless_type.hpp>
- #include <boost/units/unit.hpp>
- namespace boost {
- namespace units {
- template<class System>
- struct dimensionless_unit
- {
- typedef unit<dimensionless_type,System> type;
- };
- }
- }
- #endif
|