File indexing completed on 2025-01-18 09:29:24
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_BEAST_DETAIL_SERVICE_BASE_HPP
0011 #define BOOST_BEAST_DETAIL_SERVICE_BASE_HPP
0012
0013 #include <boost/asio/execution_context.hpp>
0014
0015 namespace boost {
0016 namespace beast {
0017 namespace detail {
0018
0019 template<class T>
0020 struct service_base : net::execution_context::service
0021 {
0022 static net::execution_context::id const id;
0023
0024 explicit
0025 service_base(net::execution_context& ctx)
0026 : net::execution_context::service(ctx)
0027 {
0028 }
0029 };
0030
0031 template<class T>
0032 net::execution_context::id const service_base<T>::id;
0033
0034 }
0035 }
0036 }
0037
0038 #endif