Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:50:07

0001 // Copyright (c) 2016 Klemens D. Morgenstern
0002 //
0003 // Distributed under the Boost Software License, Version 1.0. (See accompanying
0004 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
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 } //windows
0038 } //asio
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 } // windows
0054 } // detail
0055 
0056 using ::boost::process::detail::windows::async_pipe;
0057 
0058 } // process
0059 } // boost
0060 
0061 
0062 
0063 
0064 #endif /* BOOST_PROCESS_DETAIL_WINDOWS_ASIO_FWD_HPP_ */