high_resolution_timer.hpp 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. //
  2. // high_resolution_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_HIGH_RESOLUTION_TIMER_HPP
  11. #define BOOST_ASIO_HIGH_RESOLUTION_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 high resolution 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::high_resolution_clock> timer;
  35. * @endcode
  36. */
  37. typedef basic_waitable_timer<
  38. chrono::high_resolution_clock>
  39. high_resolution_timer;
  40. #elif defined(BOOST_ASIO_HAS_STD_CHRONO)
  41. typedef basic_waitable_timer<
  42. std::chrono::high_resolution_clock>
  43. high_resolution_timer;
  44. #elif defined(BOOST_ASIO_HAS_BOOST_CHRONO)
  45. typedef basic_waitable_timer<
  46. boost::chrono::high_resolution_clock>
  47. high_resolution_timer;
  48. #endif
  49. } // namespace asio
  50. } // namespace boost
  51. #endif // defined(BOOST_ASIO_HAS_STD_CHRONO)
  52. // || defined(BOOST_ASIO_HAS_BOOST_CHRONO)
  53. // || defined(GENERATING_DOCUMENTATION)
  54. #endif // BOOST_ASIO_HIGH_RESOLUTION_TIMER_HPP