SaveAsImageEvent.h
Go to the documentation of this file.
1 /* -*- mode: c++ -*- */
2 
14 #ifndef _SaveAsImageEvent_H_
15 #define _SaveAsImageEvent_H_
16 
17 #include "libqthippo.h"
18 
19 #if QT_VERSION < 0x040000
20 #else
21 //Added by the Qt porting tool:
22 #include <QtCore/QCustomEvent>
23 #endif
24 
25 
26 #include <qevent.h>
27 
28 #include <string>
29 
30 namespace hippodraw {
31 
32 class PlotterBase;
33 
43 {
44 
45 private:
46 
49  std::string m_filename;
50 
51 public:
52 
56  SaveAsImageEvent ( const PlotterBase * plotter,
57  const std::string & filename );
58 
61 
63  virtual ~SaveAsImageEvent ();
64 
67  PlotterBase * plotter () const;
68 
71  const std::string & filename () const;
72 
73 };
74 
75 } // namespace hippodraw
76 
77 #endif // _SaveAsImageEvent_H_

Generated for HippoDraw Class Library by doxygen