Changeset 5059 in ntrip for trunk/GnssCenter/svgmap
- Timestamp:
- Mar 28, 2013, 7:40:12 PM (12 years ago)
- Location:
- trunk/GnssCenter/svgmap
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/GnssCenter/svgmap/svgmap.cpp ¶
r5053 r5059 36 36 // Constructor 37 37 ///////////////////////////////////////////////////////////////////////////// 38 t_svgMap::t_svgMap() : QDialog() , t_pluginInterface(){38 t_svgMap::t_svgMap() : QDialog() { 39 39 40 40 // Map in Scalable Vector Graphics (svg) Format -
TabularUnified trunk/GnssCenter/svgmap/svgmap.h ¶
r5055 r5059 11 11 namespace GnssCenter { 12 12 13 class t_svgMap : public QDialog , public t_pluginInterface{13 class t_svgMap : public QDialog { 14 14 Q_OBJECT 15 15 public: 16 16 t_svgMap(); 17 17 ~t_svgMap(); 18 virtual bool expectInputFile() const {return false;}19 virtual void setInputFile(const QString&) {}20 virtual void show() {QDialog::show();}21 18 22 19 public slots: … … 49 46 Q_INTERFACES(GnssCenter::t_pluginFactoryInterface) 50 47 public: 51 virtual t_pluginInterface* create() {return new t_svgMap();}48 virtual QWidget* create() {return new t_svgMap();} 52 49 virtual QString getName() const {return QString("Map");} 53 50 };
Note:
See TracChangeset
for help on using the changeset viewer.