|
2 | 2 | // asio.hpp
|
3 | 3 | // ~~~~~~~~
|
4 | 4 | //
|
5 |
| -// Copyright (c) 2003-2021 Christopher M. Kohlhoff (chris at kohlhoff dot com) |
| 5 | +// Copyright (c) 2003-2023 Christopher M. Kohlhoff (chris at kohlhoff dot com) |
6 | 6 | //
|
7 | 7 | // Distributed under the Boost Software License, Version 1.0. (See accompanying
|
8 | 8 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
15 | 15 | # pragma once
|
16 | 16 | #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
|
17 | 17 |
|
| 18 | +#include "asio/any_completion_executor.hpp" |
| 19 | +#include "asio/any_completion_handler.hpp" |
| 20 | +#include "asio/any_io_executor.hpp" |
| 21 | +#include "asio/append.hpp" |
| 22 | +#include "asio/as_tuple.hpp" |
18 | 23 | #include "asio/associated_allocator.hpp"
|
19 |
| -#include "asio/associated_executor.hpp" |
20 | 24 | #include "asio/associated_cancellation_slot.hpp"
|
| 25 | +#include "asio/associated_executor.hpp" |
| 26 | +#include "asio/associated_immediate_executor.hpp" |
21 | 27 | #include "asio/associator.hpp"
|
22 | 28 | #include "asio/async_result.hpp"
|
23 | 29 | #include "asio/awaitable.hpp"
|
24 | 30 | #include "asio/basic_datagram_socket.hpp"
|
25 | 31 | #include "asio/basic_deadline_timer.hpp"
|
| 32 | +#include "asio/basic_file.hpp" |
26 | 33 | #include "asio/basic_io_object.hpp"
|
| 34 | +#include "asio/basic_random_access_file.hpp" |
27 | 35 | #include "asio/basic_raw_socket.hpp"
|
| 36 | +#include "asio/basic_readable_pipe.hpp" |
28 | 37 | #include "asio/basic_seq_packet_socket.hpp"
|
29 | 38 | #include "asio/basic_serial_port.hpp"
|
30 | 39 | #include "asio/basic_signal_set.hpp"
|
31 | 40 | #include "asio/basic_socket.hpp"
|
32 | 41 | #include "asio/basic_socket_acceptor.hpp"
|
33 | 42 | #include "asio/basic_socket_iostream.hpp"
|
34 | 43 | #include "asio/basic_socket_streambuf.hpp"
|
| 44 | +#include "asio/basic_stream_file.hpp" |
35 | 45 | #include "asio/basic_stream_socket.hpp"
|
36 | 46 | #include "asio/basic_streambuf.hpp"
|
37 | 47 | #include "asio/basic_waitable_timer.hpp"
|
| 48 | +#include "asio/basic_writable_pipe.hpp" |
| 49 | +#include "asio/bind_allocator.hpp" |
38 | 50 | #include "asio/bind_cancellation_slot.hpp"
|
39 | 51 | #include "asio/bind_executor.hpp"
|
| 52 | +#include "asio/bind_immediate_executor.hpp" |
40 | 53 | #include "asio/buffer.hpp"
|
| 54 | +#include "asio/buffer_registration.hpp" |
41 | 55 | #include "asio/buffered_read_stream_fwd.hpp"
|
42 | 56 | #include "asio/buffered_read_stream.hpp"
|
43 | 57 | #include "asio/buffered_stream_fwd.hpp"
|
|
52 | 66 | #include "asio/completion_condition.hpp"
|
53 | 67 | #include "asio/compose.hpp"
|
54 | 68 | #include "asio/connect.hpp"
|
| 69 | +#include "asio/connect_pipe.hpp" |
| 70 | +#include "asio/consign.hpp" |
55 | 71 | #include "asio/coroutine.hpp"
|
56 | 72 | #include "asio/deadline_timer.hpp"
|
57 | 73 | #include "asio/defer.hpp"
|
| 74 | +#include "asio/deferred.hpp" |
58 | 75 | #include "asio/detached.hpp"
|
59 | 76 | #include "asio/dispatch.hpp"
|
60 | 77 | #include "asio/error.hpp"
|
|
90 | 107 | #include "asio/execution_context.hpp"
|
91 | 108 | #include "asio/executor.hpp"
|
92 | 109 | #include "asio/executor_work_guard.hpp"
|
| 110 | +#include "asio/file_base.hpp" |
93 | 111 | #include "asio/generic/basic_endpoint.hpp"
|
94 | 112 | #include "asio/generic/datagram_protocol.hpp"
|
95 | 113 | #include "asio/generic/raw_protocol.hpp"
|
|
128 | 146 | #include "asio/ip/unicast.hpp"
|
129 | 147 | #include "asio/ip/v6_only.hpp"
|
130 | 148 | #include "asio/is_applicable_property.hpp"
|
| 149 | +#include "asio/is_contiguous_iterator.hpp" |
131 | 150 | #include "asio/is_executor.hpp"
|
132 | 151 | #include "asio/is_read_buffered.hpp"
|
133 | 152 | #include "asio/is_write_buffered.hpp"
|
134 | 153 | #include "asio/local/basic_endpoint.hpp"
|
135 | 154 | #include "asio/local/connect_pair.hpp"
|
136 | 155 | #include "asio/local/datagram_protocol.hpp"
|
| 156 | +#include "asio/local/seq_packet_protocol.hpp" |
137 | 157 | #include "asio/local/stream_protocol.hpp"
|
138 | 158 | #include "asio/multiple_exceptions.hpp"
|
139 | 159 | #include "asio/packaged_task.hpp"
|
|
145 | 165 | #include "asio/posix/stream_descriptor.hpp"
|
146 | 166 | #include "asio/post.hpp"
|
147 | 167 | #include "asio/prefer.hpp"
|
| 168 | +#include "asio/prepend.hpp" |
148 | 169 | #include "asio/query.hpp"
|
| 170 | +#include "asio/random_access_file.hpp" |
149 | 171 | #include "asio/read.hpp"
|
150 | 172 | #include "asio/read_at.hpp"
|
151 | 173 | #include "asio/read_until.hpp"
|
| 174 | +#include "asio/readable_pipe.hpp" |
| 175 | +#include "asio/recycling_allocator.hpp" |
152 | 176 | #include "asio/redirect_error.hpp"
|
| 177 | +#include "asio/registered_buffer.hpp" |
153 | 178 | #include "asio/require.hpp"
|
154 | 179 | #include "asio/require_concept.hpp"
|
155 | 180 | #include "asio/serial_port.hpp"
|
156 | 181 | #include "asio/serial_port_base.hpp"
|
157 | 182 | #include "asio/signal_set.hpp"
|
| 183 | +#include "asio/signal_set_base.hpp" |
158 | 184 | #include "asio/socket_base.hpp"
|
159 | 185 | #include "asio/static_thread_pool.hpp"
|
160 | 186 | #include "asio/steady_timer.hpp"
|
161 | 187 | #include "asio/strand.hpp"
|
| 188 | +#include "asio/stream_file.hpp" |
162 | 189 | #include "asio/streambuf.hpp"
|
163 | 190 | #include "asio/system_context.hpp"
|
164 | 191 | #include "asio/system_error.hpp"
|
|
182 | 209 | #include "asio/windows/overlapped_ptr.hpp"
|
183 | 210 | #include "asio/windows/random_access_handle.hpp"
|
184 | 211 | #include "asio/windows/stream_handle.hpp"
|
| 212 | +#include "asio/writable_pipe.hpp" |
185 | 213 | #include "asio/write.hpp"
|
186 | 214 | #include "asio/write_at.hpp"
|
187 | 215 |
|
|
0 commit comments