wait_traits.hpp 1014 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // wait_traits.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_WAIT_TRAITS_HPP
  11. #define BOOST_ASIO_WAIT_TRAITS_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/push_options.hpp>
  16. namespace boost {
  17. namespace asio {
  18. /// Wait traits suitable for use with the basic_waitable_timer class template.
  19. template <typename Clock>
  20. struct wait_traits
  21. {
  22. /// Convert a clock duration into a duration used for waiting.
  23. /**
  24. * @returns @c d.
  25. */
  26. static typename Clock::duration to_wait_duration(
  27. const typename Clock::duration& d)
  28. {
  29. return d;
  30. }
  31. };
  32. } // namespace asio
  33. } // namespace boost
  34. #include <boost/asio/detail/pop_options.hpp>
  35. #endif // BOOST_ASIO_WAIT_TRAITS_HPP