Changeset 5053 in ntrip
- Timestamp:
- Mar 28, 2013, 6:46:21 PM (12 years ago)
- Location:
- trunk/GnssCenter/svgmap
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GnssCenter/svgmap/svgmap.cpp
r5033 r5053 32 32 using namespace GnssCenter; 33 33 34 Q_EXPORT_PLUGIN2(gnsscenter_svgmap, GnssCenter::t_svgMap )34 Q_EXPORT_PLUGIN2(gnsscenter_svgmap, GnssCenter::t_svgMapFactory) 35 35 36 36 // Constructor -
trunk/GnssCenter/svgmap/svgmap.h
r5014 r5053 13 13 class t_svgMap : public QDialog, public t_pluginInterface { 14 14 Q_OBJECT 15 Q_INTERFACES(GnssCenter::t_pluginInterface)16 17 15 public: 18 16 t_svgMap(); … … 47 45 }; 48 46 47 class t_svgMapFactory : public QObject, public t_pluginFactoryInterface { 48 Q_OBJECT 49 Q_INTERFACES(GnssCenter::t_pluginFactoryInterface) 50 public: 51 t_pluginInterface* create() {return new t_svgMap();} 52 }; 53 49 54 } // namespace GnssCenter 50 55
Note:
See TracChangeset
for help on using the changeset viewer.