-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDerivedCoTask.cpp
More file actions
61 lines (46 loc) · 1.17 KB
/
DerivedCoTask.cpp
File metadata and controls
61 lines (46 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* Copyright (C) 2025 Martin Pietsch <@pmfoss>
SPDX-License-Identifier: BSD-3-Clause */
#include <iostream>
#include <CoTask.h>
using namespace CoRoutines;
class DerivedCoTask : public CoTask<int, std::pair<int, bool>, void, DerivedCoTask>
{
public:
using base = CoTask<int, std::pair<int, bool>, void, DerivedCoTask>;
using base::CoTask;
DerivedCoTask(CoTask&& pOther)
: base(std::move(pOther))
{
}
int run(int newVal, bool reset)
{
return CoTask::run({newVal, reset});
}
};
DerivedCoTask Fun()
{
int i = 1;
while(true)
{
typename DerivedCoTask::AwaitType a = co_await typename DerivedCoTask::AwaitType{};
i = ++a.first;
if(a.second)
{
i = 0;
}
co_yield i;
}
}
int main()
{
DerivedCoTask task = Fun();
for(int x = 0; x < 10; x++)
{
for(int v = 0; v < x + 1; v++)
{
std::cout << task.run(v - 1, (v == 0) ? true : false) << " ";
}
std::cout << "\n";
}
return 0;
}