Mercurial > hg > Game > Cerium
view include/TaskManager/SchedExit.h @ 195:4e66b3327c50 draft
fix
author | gongo@gendarme.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Sun, 25 Jan 2009 17:44:17 +0900 |
parents | 028ffc9c0375 |
children | eeb859bc39f1 45e849a81763 |
line wrap: on
line source
#ifndef INCLUDED_SCHED_EXIT #define INCLUDED_SCHED_EXIT #ifndef INCLUDED_BASE_H_ # include "base.h" #endif #ifndef INCLUDED_SCHEDULER # include "Scheduler.h" #endif #ifndef INCLUDED_SCHED_TASK_BASE # include "SchedTaskBase.h" #endif class SchedExit : public SchedTaskBase { public: BASE_NEW_DELETE(SchedExit); SchedTaskBase* next(Scheduler *, SchedTaskBase *); }; #endif