1 #pragma once 2 3 #include <exec/async_scope.hpp> 4 #include <stdexec/coroutine.hpp> 5 #include <stdexec/execution.hpp> 6 7 // Add std::execution as sdbusplus::async::execution so that we can simplify 8 // reference to any parts of it we use. 9 namespace sdbusplus::async 10 { 11 namespace execution = stdexec; 12 using async_scope = exec::async_scope; 13 } // namespace sdbusplus::async 14