12345678910111213141516171819202122232425262728 |
- #ifndef BOOST_UNITS_VOLUME_DERIVED_DIMENSION_HPP
- #define BOOST_UNITS_VOLUME_DERIVED_DIMENSION_HPP
- #include <boost/units/derived_dimension.hpp>
- #include <boost/units/physical_dimensions/length.hpp>
- namespace boost {
- namespace units {
- typedef derived_dimension<length_base_dimension,3>::type volume_dimension;
- }
- }
- #endif
|