Mercurial > hg > Game > Cerium
annotate include/TaskManager/SchedExit.h @ 109:028ffc9c0375 draft
Cerium cvs version
author | gongo@gendarme.local |
---|---|
date | Wed, 12 Nov 2008 17:39:33 +0900 |
parents | aa11038dbdc1 |
children | eeb859bc39f1 45e849a81763 |
rev | line source |
---|---|
42 | 1 #ifndef INCLUDED_SCHED_EXIT |
2 #define INCLUDED_SCHED_EXIT | |
3 | |
109 | 4 #ifndef INCLUDED_BASE_H_ |
5 # include "base.h" | |
6 #endif | |
7 | |
42 | 8 #ifndef INCLUDED_SCHEDULER |
9 # include "Scheduler.h" | |
10 #endif | |
11 | |
12 #ifndef INCLUDED_SCHED_TASK_BASE | |
13 # include "SchedTaskBase.h" | |
14 #endif | |
15 | |
16 class SchedExit : public SchedTaskBase { | |
17 public: | |
109 | 18 BASE_NEW_DELETE(SchedExit); |
42 | 19 |
20 SchedTaskBase* next(Scheduler *, SchedTaskBase *); | |
21 }; | |
22 | |
23 #endif |