Mercurial > hg > Game > Cerium
view include/TaskManager/SchedExit.h @ 86:61bacd3b4405
*** empty log message ***
author | gongo |
---|---|
date | Wed, 27 Feb 2008 10:56:09 +0900 |
parents | aa11038dbdc1 |
children | 028ffc9c0375 |
line wrap: on
line source
#ifndef INCLUDED_SCHED_EXIT #define INCLUDED_SCHED_EXIT #ifndef INCLUDED_SCHEDULER # include "Scheduler.h" #endif #ifndef INCLUDED_SCHED_TASK_BASE # include "SchedTaskBase.h" #endif class SchedExit : public SchedTaskBase { public: /* constructor */ SchedExit(void) {} /* variables */ /* functions */ SchedTaskBase* next(Scheduler *, SchedTaskBase *); }; #endif