File indexing completed on 2025-01-18 09:50:07
0001
0002
0003
0004
0005
0006 #ifndef BOOST_PROCESS_DETAIL_WINDOWS_ASIO_FWD_HPP_
0007 #define BOOST_PROCESS_DETAIL_WINDOWS_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 class const_buffer;
0017 class const_buffers_1;
0018
0019 template<typename Allocator>
0020 class basic_streambuf;
0021
0022 typedef basic_streambuf<std::allocator<char>> streambuf;
0023
0024 template <typename Handler>
0025 class basic_yield_context;
0026
0027 namespace windows {
0028
0029 template <typename Executor>
0030 class basic_stream_handle;
0031 typedef basic_stream_handle<any_io_executor> stream_handle;
0032
0033 template <typename Executor>
0034 class basic_object_handle;
0035 typedef basic_object_handle<any_io_executor> object_handle;
0036
0037 }
0038 }
0039
0040 namespace process { namespace detail { namespace windows {
0041
0042 class async_pipe;
0043
0044 template<typename T>
0045 struct async_in_buffer;
0046
0047 template<int p1, int p2, typename Buffer>
0048 struct async_out_buffer;
0049
0050 template<int p1, int p2, typename Type>
0051 struct async_out_future;
0052
0053 }
0054 }
0055
0056 using ::boost::process::detail::windows::async_pipe;
0057
0058 }
0059 }
0060
0061
0062
0063
0064 #endif