Mercurial > hg > Game > Cerium
view TaskManager/kernel/schedule/SchedNop.h @ 1124:c43f49400c22 draft
add mail profile
author | yutaka@localhost.localdomain |
---|---|
date | Fri, 11 Feb 2011 20:39:24 +0900 |
parents | 0251d06467de |
children | d585a7614cd5 |
line wrap: on
line source
#ifndef INCLUDED_SCHED_NOP #define INCLUDED_SCHED_NOP #include "base.h" #include "Scheduler.h" #include "SchedTaskBase.h" #include "error.h" class SchedNop : public SchedTaskBase { public: BASE_NEW_DELETE(SchedNop); /* functions */ SchedTaskBase* next(Scheduler *, SchedTaskBase *); }; #endif