Back to home page

EIC code displayed by LXR

 
 

    


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

0001 //  chrono.cpp  --------------------------------------------------------------//
0002 
0003 //  Copyright Beman Dawes 2008
0004 //  Copyright Vicente J. Botet Escriba 2009
0005 
0006 //  Distributed under the Boost Software License, Version 1.0.
0007 //  See http://www.boost.org/LICENSE_1_0.txt
0008 
0009 #ifndef BOOST_CHRONO_DETAIL_INLINED_CHRONO_HPP
0010 #define BOOST_CHRONO_DETAIL_INLINED_CHRONO_HPP
0011 
0012 #include <boost/version.hpp>
0013 #include <boost/chrono/chrono.hpp>
0014 #if defined BOOST_CHRONO_PROVIDE_HYBRID_ERROR_HANDLING
0015 #include <boost/system/system_error.hpp>
0016 #endif
0017 #include <boost/throw_exception.hpp>
0018 #include <boost/chrono/detail/system.hpp>
0019 
0020 //----------------------------------------------------------------------------//
0021 //                                                                            //
0022 //                     Platform-specific Implementations                      //
0023 //                                                                            //
0024 //----------------------------------------------------------------------------//
0025 
0026 //----------------------------------------------------------------------------//
0027 //                                Windows                                     //
0028 //----------------------------------------------------------------------------//
0029 #if defined(BOOST_CHRONO_WINDOWS_API)
0030 #include <boost/chrono/detail/inlined/win/chrono.hpp>
0031 
0032 //----------------------------------------------------------------------------//
0033 //                                 Mac                                        //
0034 //----------------------------------------------------------------------------//
0035 #elif defined(BOOST_CHRONO_MAC_API)
0036 #include <boost/chrono/detail/inlined/mac/chrono.hpp>
0037 
0038 //----------------------------------------------------------------------------//
0039 //                                POSIX                                     //
0040 //----------------------------------------------------------------------------//
0041 #elif defined(BOOST_CHRONO_POSIX_API)
0042 #include <boost/chrono/detail/inlined/posix/chrono.hpp>
0043 
0044 #endif  // POSIX
0045 
0046 #endif