|
| 1 | +// |
| 2 | +// asio.hpp |
| 3 | +// ~~~~~~~~ |
| 4 | +// |
| 5 | +// Copyright (c) 2003-2015 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/async_result.hpp" |
| 19 | +#include "asio/basic_datagram_socket.hpp" |
| 20 | +#include "asio/basic_deadline_timer.hpp" |
| 21 | +#include "asio/basic_io_object.hpp" |
| 22 | +#include "asio/basic_raw_socket.hpp" |
| 23 | +#include "asio/basic_seq_packet_socket.hpp" |
| 24 | +#include "asio/basic_serial_port.hpp" |
| 25 | +#include "asio/basic_signal_set.hpp" |
| 26 | +#include "asio/basic_socket_acceptor.hpp" |
| 27 | +#include "asio/basic_socket_iostream.hpp" |
| 28 | +#include "asio/basic_socket_streambuf.hpp" |
| 29 | +#include "asio/basic_stream_socket.hpp" |
| 30 | +#include "asio/basic_streambuf.hpp" |
| 31 | +#include "asio/basic_waitable_timer.hpp" |
| 32 | +#include "asio/buffer.hpp" |
| 33 | +#include "asio/buffered_read_stream_fwd.hpp" |
| 34 | +#include "asio/buffered_read_stream.hpp" |
| 35 | +#include "asio/buffered_stream_fwd.hpp" |
| 36 | +#include "asio/buffered_stream.hpp" |
| 37 | +#include "asio/buffered_write_stream_fwd.hpp" |
| 38 | +#include "asio/buffered_write_stream.hpp" |
| 39 | +#include "asio/buffers_iterator.hpp" |
| 40 | +#include "asio/completion_condition.hpp" |
| 41 | +#include "asio/connect.hpp" |
| 42 | +#include "asio/coroutine.hpp" |
| 43 | +#include "asio/datagram_socket_service.hpp" |
| 44 | +#include "asio/deadline_timer_service.hpp" |
| 45 | +#include "asio/deadline_timer.hpp" |
| 46 | +#include "asio/error.hpp" |
| 47 | +#include "asio/error_code.hpp" |
| 48 | +#include "asio/generic/basic_endpoint.hpp" |
| 49 | +#include "asio/generic/datagram_protocol.hpp" |
| 50 | +#include "asio/generic/raw_protocol.hpp" |
| 51 | +#include "asio/generic/seq_packet_protocol.hpp" |
| 52 | +#include "asio/generic/stream_protocol.hpp" |
| 53 | +#include "asio/handler_alloc_hook.hpp" |
| 54 | +#include "asio/handler_continuation_hook.hpp" |
| 55 | +#include "asio/handler_invoke_hook.hpp" |
| 56 | +#include "asio/handler_type.hpp" |
| 57 | +#include "asio/io_service.hpp" |
| 58 | +#include "asio/ip/address.hpp" |
| 59 | +#include "asio/ip/address_v4.hpp" |
| 60 | +#include "asio/ip/address_v6.hpp" |
| 61 | +#include "asio/ip/basic_endpoint.hpp" |
| 62 | +#include "asio/ip/basic_resolver.hpp" |
| 63 | +#include "asio/ip/basic_resolver_entry.hpp" |
| 64 | +#include "asio/ip/basic_resolver_iterator.hpp" |
| 65 | +#include "asio/ip/basic_resolver_query.hpp" |
| 66 | +#include "asio/ip/host_name.hpp" |
| 67 | +#include "asio/ip/icmp.hpp" |
| 68 | +#include "asio/ip/multicast.hpp" |
| 69 | +#include "asio/ip/resolver_query_base.hpp" |
| 70 | +#include "asio/ip/resolver_service.hpp" |
| 71 | +#include "asio/ip/tcp.hpp" |
| 72 | +#include "asio/ip/udp.hpp" |
| 73 | +#include "asio/ip/unicast.hpp" |
| 74 | +#include "asio/ip/v6_only.hpp" |
| 75 | +#include "asio/is_read_buffered.hpp" |
| 76 | +#include "asio/is_write_buffered.hpp" |
| 77 | +#include "asio/local/basic_endpoint.hpp" |
| 78 | +#include "asio/local/connect_pair.hpp" |
| 79 | +#include "asio/local/datagram_protocol.hpp" |
| 80 | +#include "asio/local/stream_protocol.hpp" |
| 81 | +#include "asio/placeholders.hpp" |
| 82 | +#include "asio/posix/basic_descriptor.hpp" |
| 83 | +#include "asio/posix/basic_stream_descriptor.hpp" |
| 84 | +#include "asio/posix/descriptor_base.hpp" |
| 85 | +#include "asio/posix/stream_descriptor.hpp" |
| 86 | +#include "asio/posix/stream_descriptor_service.hpp" |
| 87 | +#include "asio/raw_socket_service.hpp" |
| 88 | +#include "asio/read.hpp" |
| 89 | +#include "asio/read_at.hpp" |
| 90 | +#include "asio/read_until.hpp" |
| 91 | +#include "asio/seq_packet_socket_service.hpp" |
| 92 | +#include "asio/serial_port.hpp" |
| 93 | +#include "asio/serial_port_base.hpp" |
| 94 | +#include "asio/serial_port_service.hpp" |
| 95 | +#include "asio/signal_set.hpp" |
| 96 | +#include "asio/signal_set_service.hpp" |
| 97 | +#include "asio/socket_acceptor_service.hpp" |
| 98 | +#include "asio/socket_base.hpp" |
| 99 | +#include "asio/strand.hpp" |
| 100 | +#include "asio/stream_socket_service.hpp" |
| 101 | +#include "asio/streambuf.hpp" |
| 102 | +#include "asio/system_error.hpp" |
| 103 | +#include "asio/thread.hpp" |
| 104 | +#include "asio/time_traits.hpp" |
| 105 | +#include "asio/version.hpp" |
| 106 | +#include "asio/wait_traits.hpp" |
| 107 | +#include "asio/waitable_timer_service.hpp" |
| 108 | +#include "asio/windows/basic_handle.hpp" |
| 109 | +#include "asio/windows/basic_object_handle.hpp" |
| 110 | +#include "asio/windows/basic_random_access_handle.hpp" |
| 111 | +#include "asio/windows/basic_stream_handle.hpp" |
| 112 | +#include "asio/windows/object_handle.hpp" |
| 113 | +#include "asio/windows/object_handle_service.hpp" |
| 114 | +#include "asio/windows/overlapped_ptr.hpp" |
| 115 | +#include "asio/windows/random_access_handle.hpp" |
| 116 | +#include "asio/windows/random_access_handle_service.hpp" |
| 117 | +#include "asio/windows/stream_handle.hpp" |
| 118 | +#include "asio/windows/stream_handle_service.hpp" |
| 119 | +#include "asio/write.hpp" |
| 120 | +#include "asio/write_at.hpp" |
| 121 | + |
| 122 | +#endif // ASIO_HPP |
0 commit comments