123456789101112131415161718192021222324252627282930313233343536373839 |
- #ifndef ASIO_HIGH_RESOLUTION_TIMER_HPP
- #define ASIO_HIGH_RESOLUTION_TIMER_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif
- #include "asio/detail/config.hpp"
- #include "asio/basic_waitable_timer.hpp"
- #include "asio/detail/chrono.hpp"
- namespace asio {
- typedef basic_waitable_timer<
- chrono::high_resolution_clock>
- high_resolution_timer;
- }
- #endif
|