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 | |
11 | #ifndef BOOST_ASIO_EXECUTION_HPP |
12 | #define BOOST_ASIO_EXECUTION_HPP |
13 | |
14 | #if defined(_MSC_VER) && (_MSC_VER >= 1200) |
15 | # pragma once |
16 | #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) |
17 | |
18 | #include <boost/asio/execution/allocator.hpp> |
19 | #include <boost/asio/execution/any_executor.hpp> |
20 | #include <boost/asio/execution/bad_executor.hpp> |
21 | #include <boost/asio/execution/blocking.hpp> |
22 | #include <boost/asio/execution/blocking_adaptation.hpp> |
23 | #include <boost/asio/execution/context.hpp> |
24 | #include <boost/asio/execution/context_as.hpp> |
25 | #include <boost/asio/execution/executor.hpp> |
26 | #include <boost/asio/execution/invocable_archetype.hpp> |
27 | #include <boost/asio/execution/mapping.hpp> |
28 | #include <boost/asio/execution/occupancy.hpp> |
29 | #include <boost/asio/execution/outstanding_work.hpp> |
30 | #include <boost/asio/execution/prefer_only.hpp> |
31 | #include <boost/asio/execution/relationship.hpp> |
32 | |
33 | #endif // BOOST_ASIO_EXECUTION_HPP |
34 |