1 //  comparison.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_COMPARISON_HPP
10 #define BOOST_RATIO_MPL_COMPARISON_HPP
11 
12 #include <boost/ratio/mpl/equal_to.hpp>
13 #include <boost/ratio/mpl/not_equal_to.hpp>
14 #include <boost/ratio/mpl/less.hpp>
15 #include <boost/ratio/mpl/less_equal.hpp>
16 #include <boost/ratio/mpl/greater.hpp>
17 #include <boost/ratio/mpl/greater_equal.hpp>
18 
19 #endif  // BOOST_RATIO_MPL_COMPARISON_HPP
20