Changeset 5011 in ntrip for trunk/GnssCenter/src/map
- Timestamp:
- Mar 28, 2013, 2:01:16 PM (12 years ago)
- Location:
- trunk/GnssCenter/src/map
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GnssCenter/src/map/svgmap.cpp
r5004 r5011 34 34 // Constructor 35 35 ///////////////////////////////////////////////////////////////////////////// 36 t_svgMap::t_svgMap(QWidget* parent) : QDialog(parent) { 36 t_svgMap::t_svgMap(QWidget* parent) : QDialog(parent), t_pluginInterface() { 37 37 38 38 // Map in Scalable Vector Graphics (svg) Format -
trunk/GnssCenter/src/map/svgmap.h
r5004 r5011 4 4 #include <QtGui> 5 5 #include <QWhatsThis> 6 #include "plugininterface.h" 6 7 7 8 class QwtPlot; … … 10 11 namespace GnssCenter { 11 12 12 class t_svgMap : public QDialog { 13 class t_svgMap : public QDialog, public t_pluginInterface { 13 14 Q_OBJECT 14 15 … … 16 17 t_svgMap(QWidget* parent = 0); 17 18 ~t_svgMap(); 19 bool expectInputFile() const {return false;} 18 20 19 21 public slots:
Note:
See TracChangeset
for help on using the changeset viewer.