12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef BOOST_UNITS_AMOUNT_BASE_DIMENSION_HPP
- #define BOOST_UNITS_AMOUNT_BASE_DIMENSION_HPP
- #include <boost/units/config.hpp>
- #include <boost/units/base_dimension.hpp>
- namespace boost {
- namespace units {
- struct amount_base_dimension :
- boost::units::base_dimension<amount_base_dimension,-4>
- { };
- }
- }
- #if BOOST_UNITS_HAS_BOOST_TYPEOF
- #include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP()
- BOOST_TYPEOF_REGISTER_TYPE(boost::units::amount_base_dimension)
- #endif
- namespace boost {
- namespace units {
- typedef amount_base_dimension::dimension_type amount_dimension;
- }
- }
- #endif
|