12345678910111213141516171819202122232425262728293031323334 |
- #ifndef BOOST_PROCESS_DETAIL_TRAITS_ASYNC_HPP_
- #define BOOST_PROCESS_DETAIL_TRAITS_ASYNC_HPP_
- #include <boost/process/detail/config.hpp>
- #include <boost/process/detail/traits/decl.hpp>
- namespace boost { namespace asio {
- class io_context;
- }}
- namespace boost { namespace process { namespace detail {
- struct async_tag {};
- template<>
- struct initializer_builder<async_tag>;
- template<> struct initializer_tag<::boost::asio::io_context> { typedef async_tag type;};
- }}}
- #endif
|