12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef BOOST_UNITS_DIMENSIONLESS_QUANTITY_HPP
- #define BOOST_UNITS_DIMENSIONLESS_QUANTITY_HPP
- #include <boost/units/dimensionless_unit.hpp>
- #include <boost/units/quantity.hpp>
- namespace boost {
- namespace units {
- template<class System,class Y>
- struct dimensionless_quantity
- {
- typedef quantity<typename dimensionless_unit<System>::type,Y> type;
- };
- }
- }
- #endif
|