123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #ifndef BOOST_ASIO_IS_EXECUTOR_HPP
- #define BOOST_ASIO_IS_EXECUTOR_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif
- #include <boost/asio/detail/config.hpp>
- #include <boost/asio/detail/is_executor.hpp>
- #include <boost/asio/detail/push_options.hpp>
- namespace boost {
- namespace asio {
- template <typename T>
- struct is_executor
- #if defined(GENERATING_DOCUMENTATION)
- : integral_constant<bool, automatically_determined>
- #else
- : boost::asio::detail::is_executor<T>
- #endif
- {
- };
- }
- }
- #include <boost/asio/detail/pop_options.hpp>
- #endif
|