comparison TaskManager/Test/test_render/task/SendKey.h @ 406:da48fe13a459 draft

add task/SendKey
author game@henri.cr.ie.u-ryukyu.ac.jp
date Wed, 23 Sep 2009 13:00:03 +0900
parents
children b79c4b5f8a1b
comparison
equal deleted inserted replaced
402:fb81045faad3 406:da48fe13a459
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