PlotterEvent.cxx
Go to the documentation of this file.
1 
12 #include "PlotterEvent.h"
13 
14 #if QT_VERSION < 0x040000
15 #else
16 //Added by the Qt porting tool:
17 #include <QtCore/QCustomEvent>
18 #include <QtCore/QEvent>
19 #endif
20 
21 using namespace hippodraw;
22 
25  : QCustomEvent ( QEvent::User, plotter )
26 {
27 }
28 
30 PlotterEvent ( const PlotterEvent & event )
31  : QCustomEvent ( event )
32 {
33 }
34 
36 {
37 }
38 
41 plotter ( ) const
42 {
43  void * pointer = data();
44 
45  return reinterpret_cast < PlotterBase * > ( pointer );
46 }

Generated for HippoDraw Class Library by doxygen