rational_c_tag.hpp 564 B

12345678910111213141516171819202122232425
  1. // abs.hpp
  2. //
  3. // (C) Copyright 2011 Vicente J. Botet Escriba
  4. // Use, modification and distribution are subject to the Boost Software License,
  5. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt).
  7. //
  8. #ifndef BOOST_RATIO_MPL_RATIONAL_C_TAG_HPP
  9. #define BOOST_RATIO_MPL_RATIONAL_C_TAG_HPP
  10. #ifdef BOOST_RATIO_EXTENSIONS
  11. #include <boost/mpl/int.hpp>
  12. namespace boost {
  13. namespace mpl {
  14. struct rational_c_tag : int_<10> {};
  15. }
  16. }
  17. #endif // BOOST_RATIO_EXTENSIONS
  18. #endif // BOOST_RATIO_MPL_RATIONAL_C_TAG_HPP