Mercurial > hg > Game > Cerium
view include/TaskManager/SchedExit.h @ 135:ac436cebae2a draft
remove xml file
author | gongo@charles.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Thu, 27 Nov 2008 16:19:50 +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