io.hpp 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // Copyright (c) 2024 Klemens Morgenstern (klemens.morgenstern@gmx.net)
  3. //
  4. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. #ifndef BOOST_COBALT_IO_HPP
  8. #define BOOST_COBALT_IO_HPP
  9. #include <boost/cobalt/io/acceptor.hpp>
  10. #include <boost/cobalt/io/buffer.hpp>
  11. #include <boost/cobalt/io/datagram_socket.hpp>
  12. #include <boost/cobalt/io/endpoint.hpp>
  13. #include <boost/cobalt/io/file.hpp>
  14. #include <boost/cobalt/io/ops.hpp>
  15. #include <boost/cobalt/io/pipe.hpp>
  16. #include <boost/cobalt/io/random_access_device.hpp>
  17. #include <boost/cobalt/io/random_access_file.hpp>
  18. #include <boost/cobalt/io/read.hpp>
  19. #include <boost/cobalt/io/resolver.hpp>
  20. #include <boost/cobalt/io/seq_packet_socket.hpp>
  21. #include <boost/cobalt/io/serial_port.hpp>
  22. #include <boost/cobalt/io/signal_set.hpp>
  23. #include <boost/cobalt/io/sleep.hpp>
  24. #include <boost/cobalt/io/socket.hpp>
  25. #include <boost/cobalt/io/steady_timer.hpp>
  26. #include <boost/cobalt/io/stream.hpp>
  27. #include <boost/cobalt/io/stream_file.hpp>
  28. #include <boost/cobalt/io/stream_socket.hpp>
  29. #include <boost/cobalt/io/system_timer.hpp>
  30. #include <boost/cobalt/io/write.hpp>
  31. #endif //BOOST_COBALT_IO_HPP