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