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