1234567891011121314151617181920212223242526272829303132 |
- #ifndef BOOST_UNITS_STRESS_DERIVED_DIMENSION_HPP
- #define BOOST_UNITS_STRESS_DERIVED_DIMENSION_HPP
- #include <boost/units/derived_dimension.hpp>
- #include <boost/units/physical_dimensions/length.hpp>
- #include <boost/units/physical_dimensions/mass.hpp>
- #include <boost/units/physical_dimensions/time.hpp>
- namespace boost {
- namespace units {
- typedef derived_dimension<length_base_dimension,-1,
- mass_base_dimension,1,
- time_base_dimension,-2>::type stress_dimension;
- }
- }
- #endif
|