Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef ASIO_HANDLER_INVOKE_HOOK_HPP
00012 #define ASIO_HANDLER_INVOKE_HOOK_HPP
00013
00014 #if defined(_MSC_VER) && (_MSC_VER >= 1200)
00015 # pragma once
00016 #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
00017
00018 #include "asio/detail/push_options.hpp"
00019
00020 namespace asio {
00021
00023
00059 template <typename Function>
00060 inline void asio_handler_invoke(Function function, ...)
00061 {
00062 function();
00063 }
00064
00065 }
00066
00067 #include "asio/detail/pop_options.hpp"
00068
00069 #endif // ASIO_HANDLER_INVOKE_HOOK_HPP