asio2.hpp 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Copyright (c) 2017-2023 zhllxt
  3. *
  4. * author : zhllxt
  5. * email : 37792738@qq.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. #ifndef __ASIO2_HPP__
  11. #define __ASIO2_HPP__
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. #pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include <asio2/base/detail/push_options.hpp>
  16. #include <asio2/version.hpp>
  17. #include <asio2/config.hpp>
  18. #include <asio2/base/timer.hpp>
  19. #include <asio2/tcp/tcp_client.hpp>
  20. #include <asio2/tcp/tcp_server.hpp>
  21. #include <asio2/udp/udp_client.hpp>
  22. #include <asio2/udp/udp_server.hpp>
  23. #include <asio2/udp/udp_cast.hpp>
  24. #include <asio2/http/http_client.hpp>
  25. #include <asio2/http/http_server.hpp>
  26. #include <asio2/websocket/ws_client.hpp>
  27. #include <asio2/websocket/ws_server.hpp>
  28. #include <asio2/rpc/rpc_client.hpp>
  29. #include <asio2/rpc/rpc_server.hpp>
  30. #include <asio2/icmp/ping.hpp>
  31. #include <asio2/serial_port/serial_port.hpp>
  32. #if defined(ASIO2_ENABLE_SSL) || defined(ASIO2_USE_SSL)
  33. # include <asio2/tcp/tcps_client.hpp>
  34. # include <asio2/tcp/tcps_server.hpp>
  35. # include <asio2/http/https_client.hpp>
  36. # include <asio2/http/https_server.hpp>
  37. # include <asio2/websocket/wss_client.hpp>
  38. # include <asio2/websocket/wss_server.hpp>
  39. # include <asio2/rpc/rpcs_client.hpp>
  40. # include <asio2/rpc/rpcs_server.hpp>
  41. #endif
  42. #include <asio2/base/detail/pop_options.hpp>
  43. #endif // !__ASIO2_HPP__