comparison TaskManager/Test/test_render/task/SendKey.h @ 406:25f44290b8a9

add task/SendKey
author game@henri.cr.ie.u-ryukyu.ac.jp
date Wed, 23 Sep 2009 13:00:03 +0900
parents
children dd2ab68e4036
comparison
equal deleted inserted replaced
402:96608899d1d3 406:25f44290b8a9
1 #ifndef INCLUDED_TASK_SEND_KEY
2 #define INCLUDED_TASK_SEND_KEY
3
4 #include "SchedTask.h"
5
6 class SendKey : public SchedTask {
7 public:
8 SchedConstructor(SendKey);
9
10 int run(void *r, void *w);
11 };
12
13 #endif