12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #ifndef ASIO_USES_EXECUTOR_HPP
- #define ASIO_USES_EXECUTOR_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif
- #include "asio/detail/config.hpp"
- #include "asio/detail/type_traits.hpp"
- #include "asio/detail/push_options.hpp"
- namespace asio {
- struct executor_arg_t
- {
-
- constexpr executor_arg_t() noexcept
- {
- }
- };
- constexpr executor_arg_t executor_arg;
- template <typename T, typename Executor>
- struct uses_executor : false_type {};
- }
- #include "asio/detail/pop_options.hpp"
- #endif
|