Mercurial > hg > Game > Cerium
annotate include/TaskManager/SchedExit.h @ 275:237a75ab7a9b draft
merge
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 04 Jun 2009 00:12:47 +0900 |
parents | ec6729fab209 |
children | 7f991471d43f |
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); |
255 | 19 |
42 | 20 SchedTaskBase* next(Scheduler *, SchedTaskBase *); |
21 }; | |
22 | |
23 #endif |