12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef BOOST_UNITS_SI_PRESSURE_HPP
- #define BOOST_UNITS_SI_PRESSURE_HPP
- #include <boost/units/systems/si/base.hpp>
- #include <boost/units/physical_dimensions/pressure.hpp>
- namespace boost {
- namespace units {
- namespace si {
- typedef unit<pressure_dimension,si::system> pressure;
- #if defined(__MWERKS__)
- #if !__option(only_std_keywords)
- #define BOOST_UNITS_NO_PASCAL 1
- #elif defined(pascal)
- #define BOOST_UNITS_NO_PASCAL 1
- #endif
- #elif defined(pascal)
- #define BOOST_UNITS_NO_PASCAL 1
- #elif BOOST_MSVC
- #define BOOST_UNITS_NO_PASCAL 1
- #endif
- #ifndef BOOST_UNITS_NO_PASCAL
- BOOST_UNITS_STATIC_CONSTANT(pascal,pressure);
- #endif
- BOOST_UNITS_STATIC_CONSTANT(pascals,pressure);
- }
- }
- }
- #endif
|