File indexing completed on 2025-01-18 09:50:05
0001
0002
0003
0004
0005
0006 #ifndef BOOST_PROCESS_DETAIL_POSIX_ASIO_FWD_HPP_
0007 #define BOOST_PROCESS_DETAIL_POSIX_ASIO_FWD_HPP_
0008
0009 #include <memory>
0010 #include <boost/asio/ts/netfwd.hpp>
0011
0012 namespace boost { namespace asio {
0013
0014 class mutable_buffer;
0015 class mutable_buffers_1;
0016
0017 class const_buffer;
0018 class const_buffers_1;
0019
0020 template<typename Allocator>
0021 class basic_streambuf;
0022
0023 typedef basic_streambuf<std::allocator<char>> streambuf;
0024
0025 template <typename Executor>
0026 class basic_signal_set;
0027 typedef basic_signal_set<any_io_executor> signal_set;
0028
0029 template <typename Handler>
0030 class basic_yield_context;
0031
0032 namespace posix {
0033
0034 template <typename Executor>
0035 class basic_stream_descriptor;
0036 typedef basic_stream_descriptor<any_io_executor> stream_descriptor;
0037
0038 }
0039 }
0040
0041 namespace process { namespace detail { namespace posix {
0042
0043 class async_pipe;
0044
0045 template<typename T>
0046 struct async_in_buffer;
0047
0048 template<int p1, int p2, typename Buffer>
0049 struct async_out_buffer;
0050
0051 template<int p1, int p2, typename Type>
0052 struct async_out_future;
0053
0054 }
0055 }
0056
0057 using ::boost::process::detail::posix::async_pipe;
0058
0059 }
0060 }
0061
0062
0063
0064
0065 #endif