12345678910111213141516171819202122232425262728 |
- #ifndef BOOST_UNITS_FREQUENCY_DERIVED_DIMENSION_HPP
- #define BOOST_UNITS_FREQUENCY_DERIVED_DIMENSION_HPP
- #include <boost/units/derived_dimension.hpp>
- #include <boost/units/physical_dimensions/time.hpp>
- namespace boost {
- namespace units {
- typedef derived_dimension<time_base_dimension,-1>::type frequency_dimension;
- }
- }
- #endif
|