view include/TaskManager/SchedNop.h @ 347:ee3db22c03b9

error in SceneGraph.[cpp,h]
author e065746@localhost.localdomain
date Wed, 08 Jul 2009 15:04:03 +0900
parents 7075842aa155
children
line wrap: on
line source

#ifndef INCLUDED_SCHED_NOP
#define INCLUDED_SCHED_NOP

#include "base.h"
#include "Scheduler.h"
#include "SchedTaskBase.h"

#include "error.h"

class SchedNop : public SchedTaskBase {
public:
    BASE_NEW_DELETE(SchedNop);

    /* functions */
    SchedTaskBase* next(Scheduler *, SchedTaskBase *);
};

#endif