view TaskManager/Test/test_render/task/Switch.h @ 463:bc5b3d327083

remove run()
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 29 Sep 2009 15:45:11 +0900
parents a71cc69f2343
children 44c0bce54dcf
line wrap: on
line source

#ifndef INCLUDED_TASK_SWITCH
#define INCLUDED_TASK_SWITCH

#include "SchedTask.h"

class Switch : public SchedTask {
public:
    SchedConstructor(Switch);
    int run(SchedTask *s,void *rbuf, void *wbuf);
};

#endif