Vision Touch Surface Library
 All Classes Files Functions Variables Pages
eventdata.h
Go to the documentation of this file.
1 #ifndef EVENTDATA_H
2 #define EVENTDATA_H
3 #include <opencv2/opencv.hpp>
4 #include <highgui.h>
5 
6 #include "framedata.h"
7 
8 using namespace cv;
9 class EventData
10 {
11 public:
13  frameData=NULL;
14  mousePosition.x=0;
15  mousePosition.y=0;
16  offset=0;
17  }
18 
20  Point2i mousePosition;
21  int offset;
22 
23 };
24 
25 #endif // EVENTDATA_H