steady_timer.hpp 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. //
  2. // steady_timer.hpp
  3. // ~~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef BOOST_ASIO_STEADY_TIMER_HPP
  11. #define BOOST_ASIO_STEADY_TIMER_HPP
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include <boost/asio/detail/config.hpp>
  16. #if defined(BOOST_ASIO_HAS_STD_CHRONO) \
  17. || defined(BOOST_ASIO_HAS_BOOST_CHRONO) \
  18. || defined(GENERATING_DOCUMENTATION)
  19. #if defined(BOOST_ASIO_HAS_STD_CHRONO)
  20. # include <chrono>
  21. #elif defined(BOOST_ASIO_HAS_BOOST_CHRONO)
  22. # include <boost/chrono/system_clocks.hpp>
  23. #endif
  24. #include <boost/asio/basic_waitable_timer.hpp>
  25. namespace boost {
  26. namespace asio {
  27. #if defined(GENERATING_DOCUMENTATION)
  28. /// Typedef for a timer based on the steady clock.
  29. /**
  30. * This typedef uses the C++11 @c &lt;chrono&gt; standard library facility, if
  31. * available. Otherwise, it may use the Boost.Chrono library. To explicitly
  32. * utilise Boost.Chrono, use the basic_waitable_timer template directly:
  33. * @code
  34. * typedef basic_waitable_timer<boost::chrono::steady_clock> timer;
  35. * @endcode
  36. */
  37. typedef basic_waitable_timer<chrono::steady_clock> steady_timer;
  38. #elif defined(BOOST_ASIO_HAS_STD_CHRONO)
  39. # if defined(BOOST_ASIO_HAS_STD_CHRONO_MONOTONIC_CLOCK)
  40. typedef basic_waitable_timer<std::chrono::monotonic_clock> steady_timer;
  41. # else // defined(BOOST_ASIO_HAS_STD_CHRONO_MONOTONIC_CLOCK)
  42. typedef basic_waitable_timer<std::chrono::steady_clock> steady_timer;
  43. # endif // defined(BOOST_ASIO_HAS_STD_CHRONO_MONOTONIC_CLOCK)
  44. #elif defined(BOOST_ASIO_HAS_BOOST_CHRONO)
  45. typedef basic_waitable_timer<boost::chrono::steady_clock> steady_timer;
  46. #endif
  47. } // namespace asio
  48. } // namespace boost
  49. #endif // defined(BOOST_ASIO_HAS_STD_CHRONO)
  50. // || defined(BOOST_ASIO_HAS_BOOST_CHRONO)
  51. // || defined(GENERATING_DOCUMENTATION)
  52. #endif // BOOST_ASIO_STEADY_TIMER_HPP