|
| 1 | +// |
| 2 | +// asio.hpp |
| 3 | +// ~~~~~~~~ |
| 4 | +// |
| 5 | +// Copyright (c) 2003-2021 Christopher M. Kohlhoff (chris at kohlhoff dot com) |
| 6 | +// |
| 7 | +// Distributed under the Boost Software License, Version 1.0. (See accompanying |
| 8 | +// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
| 9 | +// |
| 10 | + |
| 11 | +#ifndef ASIO_HPP |
| 12 | +#define ASIO_HPP |
| 13 | + |
| 14 | +#if defined(_MSC_VER) && (_MSC_VER >= 1200) |
| 15 | +# pragma once |
| 16 | +#endif // defined(_MSC_VER) && (_MSC_VER >= 1200) |
| 17 | + |
| 18 | +#include "asio/associated_allocator.hpp" |
| 19 | +#include "asio/associated_executor.hpp" |
| 20 | +#include "asio/associated_cancellation_slot.hpp" |
| 21 | +#include "asio/associator.hpp" |
| 22 | +#include "asio/async_result.hpp" |
| 23 | +#include "asio/awaitable.hpp" |
| 24 | +#include "asio/basic_datagram_socket.hpp" |
| 25 | +#include "asio/basic_deadline_timer.hpp" |
| 26 | +#include "asio/basic_io_object.hpp" |
| 27 | +#include "asio/basic_raw_socket.hpp" |
| 28 | +#include "asio/basic_seq_packet_socket.hpp" |
| 29 | +#include "asio/basic_serial_port.hpp" |
| 30 | +#include "asio/basic_signal_set.hpp" |
| 31 | +#include "asio/basic_socket.hpp" |
| 32 | +#include "asio/basic_socket_acceptor.hpp" |
| 33 | +#include "asio/basic_socket_iostream.hpp" |
| 34 | +#include "asio/basic_socket_streambuf.hpp" |
| 35 | +#include "asio/basic_stream_socket.hpp" |
| 36 | +#include "asio/basic_streambuf.hpp" |
| 37 | +#include "asio/basic_waitable_timer.hpp" |
| 38 | +#include "asio/bind_cancellation_slot.hpp" |
| 39 | +#include "asio/bind_executor.hpp" |
| 40 | +#include "asio/buffer.hpp" |
| 41 | +#include "asio/buffered_read_stream_fwd.hpp" |
| 42 | +#include "asio/buffered_read_stream.hpp" |
| 43 | +#include "asio/buffered_stream_fwd.hpp" |
| 44 | +#include "asio/buffered_stream.hpp" |
| 45 | +#include "asio/buffered_write_stream_fwd.hpp" |
| 46 | +#include "asio/buffered_write_stream.hpp" |
| 47 | +#include "asio/buffers_iterator.hpp" |
| 48 | +#include "asio/cancellation_signal.hpp" |
| 49 | +#include "asio/cancellation_state.hpp" |
| 50 | +#include "asio/cancellation_type.hpp" |
| 51 | +#include "asio/co_spawn.hpp" |
| 52 | +#include "asio/completion_condition.hpp" |
| 53 | +#include "asio/compose.hpp" |
| 54 | +#include "asio/connect.hpp" |
| 55 | +#include "asio/coroutine.hpp" |
| 56 | +#include "asio/deadline_timer.hpp" |
| 57 | +#include "asio/defer.hpp" |
| 58 | +#include "asio/detached.hpp" |
| 59 | +#include "asio/dispatch.hpp" |
| 60 | +#include "asio/error.hpp" |
| 61 | +#include "asio/error_code.hpp" |
| 62 | +#include "asio/execution.hpp" |
| 63 | +#include "asio/execution/allocator.hpp" |
| 64 | +#include "asio/execution/any_executor.hpp" |
| 65 | +#include "asio/execution/blocking.hpp" |
| 66 | +#include "asio/execution/blocking_adaptation.hpp" |
| 67 | +#include "asio/execution/bulk_execute.hpp" |
| 68 | +#include "asio/execution/bulk_guarantee.hpp" |
| 69 | +#include "asio/execution/connect.hpp" |
| 70 | +#include "asio/execution/context.hpp" |
| 71 | +#include "asio/execution/context_as.hpp" |
| 72 | +#include "asio/execution/execute.hpp" |
| 73 | +#include "asio/execution/executor.hpp" |
| 74 | +#include "asio/execution/invocable_archetype.hpp" |
| 75 | +#include "asio/execution/mapping.hpp" |
| 76 | +#include "asio/execution/occupancy.hpp" |
| 77 | +#include "asio/execution/operation_state.hpp" |
| 78 | +#include "asio/execution/outstanding_work.hpp" |
| 79 | +#include "asio/execution/prefer_only.hpp" |
| 80 | +#include "asio/execution/receiver.hpp" |
| 81 | +#include "asio/execution/receiver_invocation_error.hpp" |
| 82 | +#include "asio/execution/relationship.hpp" |
| 83 | +#include "asio/execution/schedule.hpp" |
| 84 | +#include "asio/execution/scheduler.hpp" |
| 85 | +#include "asio/execution/sender.hpp" |
| 86 | +#include "asio/execution/set_done.hpp" |
| 87 | +#include "asio/execution/set_error.hpp" |
| 88 | +#include "asio/execution/set_value.hpp" |
| 89 | +#include "asio/execution/start.hpp" |
| 90 | +#include "asio/execution_context.hpp" |
| 91 | +#include "asio/executor.hpp" |
| 92 | +#include "asio/executor_work_guard.hpp" |
| 93 | +#include "asio/generic/basic_endpoint.hpp" |
| 94 | +#include "asio/generic/datagram_protocol.hpp" |
| 95 | +#include "asio/generic/raw_protocol.hpp" |
| 96 | +#include "asio/generic/seq_packet_protocol.hpp" |
| 97 | +#include "asio/generic/stream_protocol.hpp" |
| 98 | +#include "asio/handler_alloc_hook.hpp" |
| 99 | +#include "asio/handler_continuation_hook.hpp" |
| 100 | +#include "asio/handler_invoke_hook.hpp" |
| 101 | +#include "asio/high_resolution_timer.hpp" |
| 102 | +#include "asio/io_context.hpp" |
| 103 | +#include "asio/io_context_strand.hpp" |
| 104 | +#include "asio/io_service.hpp" |
| 105 | +#include "asio/io_service_strand.hpp" |
| 106 | +#include "asio/ip/address.hpp" |
| 107 | +#include "asio/ip/address_v4.hpp" |
| 108 | +#include "asio/ip/address_v4_iterator.hpp" |
| 109 | +#include "asio/ip/address_v4_range.hpp" |
| 110 | +#include "asio/ip/address_v6.hpp" |
| 111 | +#include "asio/ip/address_v6_iterator.hpp" |
| 112 | +#include "asio/ip/address_v6_range.hpp" |
| 113 | +#include "asio/ip/network_v4.hpp" |
| 114 | +#include "asio/ip/network_v6.hpp" |
| 115 | +#include "asio/ip/bad_address_cast.hpp" |
| 116 | +#include "asio/ip/basic_endpoint.hpp" |
| 117 | +#include "asio/ip/basic_resolver.hpp" |
| 118 | +#include "asio/ip/basic_resolver_entry.hpp" |
| 119 | +#include "asio/ip/basic_resolver_iterator.hpp" |
| 120 | +#include "asio/ip/basic_resolver_query.hpp" |
| 121 | +#include "asio/ip/host_name.hpp" |
| 122 | +#include "asio/ip/icmp.hpp" |
| 123 | +#include "asio/ip/multicast.hpp" |
| 124 | +#include "asio/ip/resolver_base.hpp" |
| 125 | +#include "asio/ip/resolver_query_base.hpp" |
| 126 | +#include "asio/ip/tcp.hpp" |
| 127 | +#include "asio/ip/udp.hpp" |
| 128 | +#include "asio/ip/unicast.hpp" |
| 129 | +#include "asio/ip/v6_only.hpp" |
| 130 | +#include "asio/is_applicable_property.hpp" |
| 131 | +#include "asio/is_executor.hpp" |
| 132 | +#include "asio/is_read_buffered.hpp" |
| 133 | +#include "asio/is_write_buffered.hpp" |
| 134 | +#include "asio/local/basic_endpoint.hpp" |
| 135 | +#include "asio/local/connect_pair.hpp" |
| 136 | +#include "asio/local/datagram_protocol.hpp" |
| 137 | +#include "asio/local/stream_protocol.hpp" |
| 138 | +#include "asio/multiple_exceptions.hpp" |
| 139 | +#include "asio/packaged_task.hpp" |
| 140 | +#include "asio/placeholders.hpp" |
| 141 | +#include "asio/posix/basic_descriptor.hpp" |
| 142 | +#include "asio/posix/basic_stream_descriptor.hpp" |
| 143 | +#include "asio/posix/descriptor.hpp" |
| 144 | +#include "asio/posix/descriptor_base.hpp" |
| 145 | +#include "asio/posix/stream_descriptor.hpp" |
| 146 | +#include "asio/post.hpp" |
| 147 | +#include "asio/prefer.hpp" |
| 148 | +#include "asio/query.hpp" |
| 149 | +#include "asio/read.hpp" |
| 150 | +#include "asio/read_at.hpp" |
| 151 | +#include "asio/read_until.hpp" |
| 152 | +#include "asio/redirect_error.hpp" |
| 153 | +#include "asio/require.hpp" |
| 154 | +#include "asio/require_concept.hpp" |
| 155 | +#include "asio/serial_port.hpp" |
| 156 | +#include "asio/serial_port_base.hpp" |
| 157 | +#include "asio/signal_set.hpp" |
| 158 | +#include "asio/socket_base.hpp" |
| 159 | +#include "asio/static_thread_pool.hpp" |
| 160 | +#include "asio/steady_timer.hpp" |
| 161 | +#include "asio/strand.hpp" |
| 162 | +#include "asio/streambuf.hpp" |
| 163 | +#include "asio/system_context.hpp" |
| 164 | +#include "asio/system_error.hpp" |
| 165 | +#include "asio/system_executor.hpp" |
| 166 | +#include "asio/system_timer.hpp" |
| 167 | +#include "asio/this_coro.hpp" |
| 168 | +#include "asio/thread.hpp" |
| 169 | +#include "asio/thread_pool.hpp" |
| 170 | +#include "asio/time_traits.hpp" |
| 171 | +#include "asio/use_awaitable.hpp" |
| 172 | +#include "asio/use_future.hpp" |
| 173 | +#include "asio/uses_executor.hpp" |
| 174 | +#include "asio/version.hpp" |
| 175 | +#include "asio/wait_traits.hpp" |
| 176 | +#include "asio/windows/basic_object_handle.hpp" |
| 177 | +#include "asio/windows/basic_overlapped_handle.hpp" |
| 178 | +#include "asio/windows/basic_random_access_handle.hpp" |
| 179 | +#include "asio/windows/basic_stream_handle.hpp" |
| 180 | +#include "asio/windows/object_handle.hpp" |
| 181 | +#include "asio/windows/overlapped_handle.hpp" |
| 182 | +#include "asio/windows/overlapped_ptr.hpp" |
| 183 | +#include "asio/windows/random_access_handle.hpp" |
| 184 | +#include "asio/windows/stream_handle.hpp" |
| 185 | +#include "asio/write.hpp" |
| 186 | +#include "asio/write_at.hpp" |
| 187 | + |
| 188 | +#endif // ASIO_HPP |
0 commit comments