arithmetic.hpp 692 B

12345678910111213141516171819202122
  1. // arithmetic.hpp ---------------------------------------------------------------//
  2. // Copyright 2011 Vicente J. Botet Escriba
  3. // Distributed under the Boost Software License, Version 1.0.
  4. // See http://www.boost.org/LICENSE_1_0.txt
  5. #ifndef BOOST_RATIO_MPL_ARITHMETIC_HPP
  6. #define BOOST_RATIO_MPL_ARITHMETIC_HPP
  7. #include <boost/ratio/mpl/plus.hpp>
  8. #include <boost/ratio/mpl/minus.hpp>
  9. #include <boost/ratio/mpl/times.hpp>
  10. #include <boost/ratio/mpl/divides.hpp>
  11. #include <boost/ratio/mpl/negate.hpp>
  12. #include <boost/ratio/mpl/abs.hpp>
  13. #include <boost/ratio/mpl/sign.hpp>
  14. #include <boost/ratio/mpl/gcd.hpp>
  15. #include <boost/ratio/mpl/lcm.hpp>
  16. #endif // BOOST_RATIO_MPL_ARITHMETIC_HPP