source: ntrip/trunk/GnssCenter/inpedit/inpedit.h@ 5059

Last change on this file since 5059 was 5059, checked in by mervart, 11 years ago
File size: 695 bytes
RevLine 
[5015]1#ifndef GnssCenter_INPEDIT_H
2#define GnssCenter_INPEDIT_H
[4823]3
[4826]4#include <QtGui>
[5015]5#include "plugininterface.h"
[4823]6
[5000]7namespace GnssCenter {
[4823]8
[4855]9class t_keyword;
10class t_panel;
[4823]11
[5059]12class t_inpEdit : public QTabWidget {
[4823]13 public:
[5015]14 t_inpEdit();
15 ~t_inpEdit();
[5059]16 void setInputFile(const QString&);
[4823]17 private:
18 void readFile();
[4871]19 QString _fileName;
20 QMap<QString, t_keyword*> _keywords;
[4823]21};
22
[5051]23class t_inpEditFactory : public QObject, public t_pluginFactoryInterface {
24 Q_OBJECT
25 Q_INTERFACES(GnssCenter::t_pluginFactoryInterface)
26 public:
[5059]27 virtual QWidget* create() {return new t_inpEdit();}
[5055]28 virtual QString getName() const {return QString("Edit Input");}
[5051]29};
30
[5000]31} // namespace GnssCenter
[4823]32
33#endif
34
Note: See TracBrowser for help on using the repository browser.