Mercurial > hg > Game > Cerium
annotate include/TaskManager/SchedExit.h @ 42:aa11038dbdc1
*** empty log message ***
author | gongo |
---|---|
date | Thu, 14 Feb 2008 18:27:37 +0900 |
parents | |
children | 028ffc9c0375 |
rev | line source |
---|---|
42 | 1 #ifndef INCLUDED_SCHED_EXIT |
2 #define INCLUDED_SCHED_EXIT | |
3 | |
4 #ifndef INCLUDED_SCHEDULER | |
5 # include "Scheduler.h" | |
6 #endif | |
7 | |
8 #ifndef INCLUDED_SCHED_TASK_BASE | |
9 # include "SchedTaskBase.h" | |
10 #endif | |
11 | |
12 class SchedExit : public SchedTaskBase { | |
13 public: | |
14 /* constructor */ | |
15 SchedExit(void) {} | |
16 | |
17 /* variables */ | |
18 | |
19 /* functions */ | |
20 SchedTaskBase* next(Scheduler *, SchedTaskBase *); | |
21 }; | |
22 | |
23 #endif |