Fenix @develop
 
Loading...
Searching...
No Matches
forward.hpp
1
2// Forward declarations to avoid apps needing C++20 unless they're directly
3// using the coroutines
4
5#ifndef FENIX_TASKS_FORWARD_HPP
6#define FENIX_TASKS_FORWARD_HPP
7
8namespace fenix::tasks {
9template <typename T, bool eager = false>
10class Task;
11
12template <typename T>
13using LazyTask = Task<T, false>;
14}
15
16#endif // FENIX_TASKS_FORWARD_HPP