Go to the documentation of this file.00001 #ifndef __SGDRIVER_CONSOLE_H__
00002 #define __SGDRIVER_CONSOLE_H__
00003
00004 #include "TuioListener.h"
00005 #include "TuioClient.h"
00006 #include <math.h>
00007
00008 using namespace TUIO;
00009
00010 class SGTUIODriver : public TuioListener
00011 {
00012 public:
00013 void addTuioObject(TuioObject *tobj);
00014 void updateTuioObject(TuioObject *tobj);
00015 void removeTuioObject(TuioObject *tobj);
00016
00017 void addTuioCursor(TuioCursor *tcur);
00018 void updateTuioCursor(TuioCursor *tcur);
00019 void removeTuioCursor(TuioCursor *tcur);
00020
00021 void refresh(TuioTime frameTime);
00022
00023 };
00024
00025 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
00026
00027 #endif