Mercurial > hg > Game > Cerium
annotate include/TaskManager/SchedNop.h @ 143:9588726193e1 draft
add xml
author | gongo@charles.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Sat, 29 Nov 2008 03:36:11 +0900 |
parents | 028ffc9c0375 |
children | 3fc86ddf5d1c |
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 |