Mercurial > hg > Members > kono > Cerium
annotate include/TaskManager/SchedNop.h @ 217:897aeb144569
fix
author | gongo@localhost.localdomain |
---|---|
date | Wed, 04 Feb 2009 22:50:42 +0900 |
parents | 5c194c71eca8 |
children | 7075842aa155 |
rev | line source |
---|---|
42 | 1 #ifndef INCLUDED_SCHED_NOP |
2 #define INCLUDED_SCHED_NOP | |
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 #include "error.h" | |
17 | |
18 class SchedNop : public SchedTaskBase { | |
19 public: | |
109 | 20 BASE_NEW_DELETE(SchedNop); |
21 | |
42 | 22 /* functions */ |
23 SchedTaskBase* next(Scheduler *, SchedTaskBase *); | |
24 }; | |
25 | |
26 #endif |