system_timer.hpp 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. //
  2. // system_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_SYSTEM_TIMER_HPP
  11. #define BOOST_ASIO_SYSTEM_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 system 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::system_clock> timer;
  35. * @endcode
  36. */
  37. typedef basic_waitable_timer<chrono::system_clock> system_timer;
  38. #elif defined(BOOST_ASIO_HAS_STD_CHRONO)
  39. typedef basic_waitable_timer<std::chrono::system_clock> system_timer;
  40. #elif defined(BOOST_ASIO_HAS_BOOST_CHRONO)
  41. typedef basic_waitable_timer<boost::chrono::system_clock> system_timer;
  42. #endif
  43. } // namespace asio
  44. } // namespace boost
  45. #endif // defined(BOOST_ASIO_HAS_STD_CHRONO)
  46. // || defined(BOOST_ASIO_HAS_BOOST_CHRONO)
  47. // || defined(GENERATING_DOCUMENTATION)
  48. #endif // BOOST_ASIO_SYSTEM_TIMER_HPP