view include/TaskManager/SchedExit.h @ 42:aa11038dbdc1

*** empty log message ***
author gongo
date Thu, 14 Feb 2008 18:27:37 +0900
parents
children 5c194c71eca8
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