CanvasSelectionEvent.cxx
Go to the documentation of this file.
1 
11 #include "CanvasSelectionEvent.h"
12 
13 #if QT_VERSION < 0x040000
14 #else
15 //Added by the Qt porting tool:
16 #include <QtCore/QCustomEvent>
17 #include <QtCore/QEvent>
18 #endif
19 
20 namespace hippodraw {
21 
23 CanvasSelectionEvent ( std::vector < PlotterBase * > plotters )
24  : QCustomEvent ( QEvent::User ),
25  m_plotters ( plotters )
26 {
27 }
28 
31  : QCustomEvent ( event )
32 {
33 }
34 
36 {
37 }
38 
39 const std::vector < PlotterBase * > &
41 getPlotters ( ) const
42 {
43  return m_plotters;
44 }
45 
46 } // namespace hippodraw
47 

Generated for HippoDraw Class Library by doxygen