Mercurial > hg > Game > Cerium
view include/TaskManager/SchedExit.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 | 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