1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #ifndef ASIO_HANDLER_INVOKE_HOOK_HPP
- #define ASIO_HANDLER_INVOKE_HOOK_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif
- #include "asio/detail/push_options.hpp"
- namespace asio {
- template <typename Function>
- inline void asio_handler_invoke(Function function, ...)
- {
- function();
- }
- }
- #include "asio/detail/pop_options.hpp"
- #endif
|