Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
qt
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
22
CanvasSelectionEvent::
23
CanvasSelectionEvent
( std::vector < PlotterBase * > plotters )
24
:
QCustomEvent
(
QEvent
::User ),
25
m_plotters ( plotters )
26
{
27
}
28
29
CanvasSelectionEvent::
30
CanvasSelectionEvent
(
const
CanvasSelectionEvent
& event )
31
:
QCustomEvent
( event )
32
{
33
}
34
35
CanvasSelectionEvent::~CanvasSelectionEvent
()
36
{
37
}
38
39
const
std::vector < PlotterBase * > &
40
CanvasSelectionEvent::
41
getPlotters
( )
const
42
{
43
return
m_plotters
;
44
}
45
46
}
// namespace hippodraw
47
Generated for HippoDraw Class Library by