blob: b1fba75029d457e4295d87156c1c612e7ff2fff4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef RUST_TASK_LIST_H
#define RUST_TASK_LIST_H
/**
* Used to indicate the state of a rust task.
*/
class rust_task_list : public indexed_list<rust_task>,
public dom_owned<rust_task_list> {
public:
rust_dom *dom;
const char* name;
rust_task_list (rust_dom *dom, const char* name);
void delete_all();
};
#endif /* RUST_TASK_LIST_H */
|