CanvasSelectionEvent.cxx

Go to the documentation of this file.
00001 
00011 #include "CanvasSelectionEvent.h"
00012 
00013 #if QT_VERSION < 0x040000
00014 #else
00015 //Added by the Qt porting tool:
00016 #include <QtCore/QCustomEvent>
00017 #include <QtCore/QEvent>
00018 #endif
00019 
00020 namespace hippodraw {
00021 
00022 CanvasSelectionEvent::
00023 CanvasSelectionEvent ( std::vector < PlotterBase * > plotters )
00024   : QCustomEvent ( QEvent::User ),
00025     m_plotters ( plotters )
00026 {
00027 }
00028 
00029 CanvasSelectionEvent::
00030 CanvasSelectionEvent ( const CanvasSelectionEvent & event )
00031   : QCustomEvent ( event )
00032 {
00033 }
00034 
00035 CanvasSelectionEvent::~CanvasSelectionEvent ()
00036 {
00037 }
00038 
00039 const std::vector < PlotterBase * > &
00040 CanvasSelectionEvent::
00041 getPlotters ( ) const
00042 {
00043   return m_plotters;
00044 }
00045 
00046 } // namespace hippodraw
00047 

Generated for HippoDraw Class Library by doxygen