12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #ifndef ASIO_EXECUTION_BAD_EXECUTOR_HPP
- #define ASIO_EXECUTION_BAD_EXECUTOR_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif
- #include "asio/detail/config.hpp"
- #include <exception>
- #include "asio/detail/push_options.hpp"
- namespace asio {
- namespace execution {
- class bad_executor
- : public std::exception
- {
- public:
-
- ASIO_DECL bad_executor() noexcept;
-
- ASIO_DECL virtual const char* what() const noexcept;
- };
- }
- }
- #include "asio/detail/pop_options.hpp"
- #if defined(ASIO_HEADER_ONLY)
- # include "asio/execution/impl/bad_executor.ipp"
- #endif
- #endif
|