12345678910111213141516171819202122232425262728293031323334 |
- #ifndef BOOST_UNITS_CGS_ACCELERATION_HPP
- #define BOOST_UNITS_CGS_ACCELERATION_HPP
- #include <boost/units/systems/cgs/base.hpp>
- #include <boost/units/physical_dimensions/acceleration.hpp>
- namespace boost {
- namespace units {
- namespace cgs {
- typedef unit<acceleration_dimension,cgs::system> acceleration;
- BOOST_UNITS_STATIC_CONSTANT(gal,acceleration);
- BOOST_UNITS_STATIC_CONSTANT(gals,acceleration);
-
- }
- }
- }
- #endif
|