Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef INCLUDED_TUIOCURSOR_H
00023 #define INCLUDED_TUIOCURSOR_H
00024
00025 #include <math.h>
00026 #include "TuioContainer.h"
00027
00028 namespace TUIO {
00029
00036 class TuioCursor: public TuioContainer
00037 {
00038
00039 protected:
00043 int cursor_id;
00044
00045 public:
00056 TuioCursor (TuioTime ttime, long si, int ci, float xp, float yp):TuioContainer(ttime,si,xp,yp)
00057 {
00058 cursor_id = ci;
00059 };
00060
00070 TuioCursor (long si, int ci, float xp, float yp):TuioContainer(si,xp,yp)
00071 {
00072 cursor_id = ci;
00073 };
00074
00081 TuioCursor (TuioCursor *tcur):TuioContainer(tcur)
00082 {
00083 cursor_id = tcur->getCursorID();
00084 };
00085
00089 ~TuioCursor(){};
00090
00095 int getCursorID()
00096 {
00097 return cursor_id;
00098 };
00099 };
00100 };
00101 #endif