is_evenly_divisible_by.hpp 753 B

12345678910111213141516171819202122232425
  1. // is_evenly_divisible_by.hpp --------------------------------------------------------------//
  2. // Copyright 2009-2010 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_CHRONO_DETAIL_IS_EVENLY_DIVISIBLE_BY_HPP
  6. #define BOOST_CHRONO_DETAIL_IS_EVENLY_DIVISIBLE_BY_HPP
  7. #include <boost/ratio/detail/is_evenly_divisible_by.hpp>
  8. namespace boost {
  9. namespace chrono {
  10. namespace chrono_detail {
  11. template <class R1, class R2>
  12. struct is_evenly_divisible_by : public boost::ratio_detail::is_evenly_divisible_by<R1, R2>
  13. {};
  14. } // namespace chrono_detail
  15. } // namespace detail
  16. } // namespace chrono
  17. #endif // BOOST_CHRONO_DETAIL_IS_EVENLY_DIVISIBLE_BY_HPP