File indexing completed on 2025-01-18 09:50:06
0001
0002
0003
0004
0005
0006
0007 #ifndef BOOST_PROCESS_DETAIL_TRAITS_ASYNC_HPP_
0008 #define BOOST_PROCESS_DETAIL_TRAITS_ASYNC_HPP_
0009
0010 #include <boost/process/detail/config.hpp>
0011 #include <boost/process/detail/traits/decl.hpp>
0012
0013 namespace boost { namespace asio {
0014
0015 class io_context;
0016 }}
0017
0018 namespace boost { namespace process { namespace detail {
0019
0020 struct async_tag {};
0021
0022 template<>
0023 struct initializer_builder<async_tag>;
0024
0025 template<> struct initializer_tag<::boost::asio::io_context> { typedef async_tag type;};
0026
0027
0028
0029
0030 }}}
0031
0032
0033
0034 #endif