12345678910111213141516171819202122232425262728293031323334 |
- #ifndef BOOST_UNITS_IMPEDANCE_DERIVED_DIMENSION_HPP
- #define BOOST_UNITS_IMPEDANCE_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>
- #include <boost/units/physical_dimensions/current.hpp>
- namespace boost {
- namespace units {
- typedef derived_dimension<length_base_dimension,2,
- mass_base_dimension,1,
- time_base_dimension,-3,
- current_base_dimension,-2>::type impedance_dimension;
- }
- }
- #endif
|