Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:29:46

0001 //  is_evenly_divisible_by.hpp  --------------------------------------------------------------//
0002 
0003 //  Copyright 2009-2010 Vicente J. Botet Escriba
0004 
0005 //  Distributed under the Boost Software License, Version 1.0.
0006 //  See http://www.boost.org/LICENSE_1_0.txt
0007 
0008 #ifndef BOOST_CHRONO_DETAIL_IS_EVENLY_DIVISIBLE_BY_HPP
0009 #define BOOST_CHRONO_DETAIL_IS_EVENLY_DIVISIBLE_BY_HPP
0010 
0011 #include <boost/ratio/detail/is_evenly_divisible_by.hpp>
0012 
0013 namespace boost {
0014 namespace chrono {
0015 namespace chrono_detail {
0016 
0017   template <class R1, class R2>
0018   struct is_evenly_divisible_by : public boost::ratio_detail::is_evenly_divisible_by<R1, R2>
0019   {};
0020 
0021 } // namespace chrono_detail
0022 } // namespace detail
0023 } // namespace chrono
0024 
0025 #endif // BOOST_CHRONO_DETAIL_IS_EVENLY_DIVISIBLE_BY_HPP