1 // Copyright (c) 2016 Klemens D. Morgenstern
2 //
3 // Distributed under the Boost Software License, Version 1.0. (See accompanying
4 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 
6 
7 #ifndef BOOST_PROCESS_DETAIL_TRAITS_ASYNC_HPP_
8 #define BOOST_PROCESS_DETAIL_TRAITS_ASYNC_HPP_
9 
10 #include <boost/process/detail/config.hpp>
11 #include <boost/process/detail/traits/decl.hpp>
12 
13 namespace boost { namespace asio {
14 
15 class io_context;
16 }}
17 
18 namespace boost { namespace process { namespace detail {
19 
20 struct async_tag {};
21 
22 template<>
23 struct initializer_builder<async_tag>;
24 
25 template<> struct initializer_tag<::boost::asio::io_context> { typedef async_tag type;};
26 
27 
28 
29 
30 }}}
31 
32 
33 
34 #endif /* BOOST_PROCESS_DETAIL_HANDLER_HPP_ */
35