cobalt.hpp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // Copyright (c) 2022 Klemens Morgenstern ([email protected])
  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_HPP
  8. #define BOOST_COBALT_HPP
  9. #include <boost/cobalt/async_for.hpp>
  10. #include <boost/cobalt/channel.hpp>
  11. #include <boost/cobalt/concepts.hpp>
  12. #include <boost/cobalt/config.hpp>
  13. #include <boost/cobalt/detached.hpp>
  14. #include <boost/cobalt/error.hpp>
  15. #include <boost/cobalt/gather.hpp>
  16. #include <boost/cobalt/generator.hpp>
  17. #include <boost/cobalt/join.hpp>
  18. #include <boost/cobalt/leaf.hpp>
  19. #include <boost/cobalt/main.hpp>
  20. #include <boost/cobalt/op.hpp>
  21. #include <boost/cobalt/promise.hpp>
  22. #include <boost/cobalt/run.hpp>
  23. #include <boost/cobalt/race.hpp>
  24. #include <boost/cobalt/spawn.hpp>
  25. #include <boost/cobalt/task.hpp>
  26. #include <boost/cobalt/this_coro.hpp>
  27. #include <boost/cobalt/this_thread.hpp>
  28. #include <boost/cobalt/thread.hpp>
  29. #include <boost/cobalt/wait_group.hpp>
  30. #include <boost/cobalt/with.hpp>
  31. #endif //BOOST_COBALT_HPP