Mercurial > hg > Members > kono > Cerium
view include/TaskManager/SchedNop2Ready.h @ 346:2972f0bdd18c
remove SceneGraph::createFromXMLfile
author | e065746@localhost.localdomain |
---|---|
date | Wed, 08 Jul 2009 14:21:46 +0900 |
parents | 7075842aa155 |
children |
line wrap: on
line source
#ifndef INCLUDED_SCHED_NOP2READY #define INCLUDED_SCHED_NOP2READY #include "base.h" #include "Scheduler.h" #include "SchedTaskBase.h" #include "SchedNop.h" #include "error.h" class SchedNop2Ready : public SchedNop { public: /* constructor */ SchedNop2Ready(Scheduler*); BASE_NEW_DELETE(SchedNop2Ready); /* variables */ Scheduler* scheduler; /* functions */ void exec(void); SchedTaskBase* next(Scheduler *, SchedTaskBase *); #if DEBUG void read(void) { __debug("[SchedNop2Ready:%s]\n", __FUNCTION__); } void write(void) { __debug("[SchedNop2Ready:%s]\n", __FUNCTION__); } #endif }; #endif