VAT  3.0
Video Analysis Tool
setLine.h
1 #ifndef SETLINE_H
2 #define SETLINE_H
3 
4 #include "Datapool.h"
5 #include "drawInterface.h"
6 #include "image_display.h"
7 
8 class setLine: public drawInterface
9 {
10 public:
11  setLine(Datapool *i_data);
12 
13  ~setLine();
14 
15  //Set module configuration parameters
16  bool setParameters(QDomNode &config);
17 
18  //Initialization after reading parameters
19  bool init();
20 
21  //Function executed at each frame
22  bool draw(QImage **image);
23 
24  bool paint(QImage *image);
25 };
26 
27 #endif // SETLINE_H
Definition: drawInterface.h:23
Definition: setLine.h:8
An object of this class is instantiated at main code, and this object is used by every class to push ...
Definition: Datapool.h:39