execution.hpp 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // execution.hpp
  3. // ~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2024 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. #ifndef BOOST_ASIO_EXECUTION_HPP
  11. #define BOOST_ASIO_EXECUTION_HPP
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include <boost/asio/execution/allocator.hpp>
  16. #include <boost/asio/execution/any_executor.hpp>
  17. #include <boost/asio/execution/bad_executor.hpp>
  18. #include <boost/asio/execution/blocking.hpp>
  19. #include <boost/asio/execution/blocking_adaptation.hpp>
  20. #include <boost/asio/execution/context.hpp>
  21. #include <boost/asio/execution/context_as.hpp>
  22. #include <boost/asio/execution/executor.hpp>
  23. #include <boost/asio/execution/invocable_archetype.hpp>
  24. #include <boost/asio/execution/mapping.hpp>
  25. #include <boost/asio/execution/occupancy.hpp>
  26. #include <boost/asio/execution/outstanding_work.hpp>
  27. #include <boost/asio/execution/prefer_only.hpp>
  28. #include <boost/asio/execution/relationship.hpp>
  29. #endif // BOOST_ASIO_EXECUTION_HPP