Changeset 5051 in ntrip
- Timestamp:
- Mar 28, 2013, 6:42:49 PM (11 years ago)
- Location:
- trunk/GnssCenter/inpedit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GnssCenter/inpedit/inpedit.cpp
r5033 r5051 23 23 using namespace GnssCenter; 24 24 25 Q_EXPORT_PLUGIN2(gnsscenter_inpedit, GnssCenter::t_inpEdit )25 Q_EXPORT_PLUGIN2(gnsscenter_inpedit, GnssCenter::t_inpEditFactory) 26 26 27 27 // Constructor -
trunk/GnssCenter/inpedit/inpedit.h
r5015 r5051 11 11 12 12 class t_inpEdit : public QTabWidget, public t_pluginInterface { 13 Q_OBJECT14 Q_INTERFACES(GnssCenter::t_pluginInterface)15 16 13 public: 17 14 t_inpEdit(); … … 20 17 virtual void setInputFile(const QString&); 21 18 virtual void show() {QTabWidget::show();} 22 23 19 private: 24 20 void readFile(); … … 27 23 }; 28 24 25 class t_inpEditFactory : public QObject, public t_pluginFactoryInterface { 26 Q_OBJECT 27 Q_INTERFACES(GnssCenter::t_pluginFactoryInterface) 28 public: 29 t_pluginInterface* create() {return new t_inpEdit();} 30 }; 31 29 32 } // namespace GnssCenter 30 33
Note:
See TracChangeset
for help on using the changeset viewer.