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

Last change on this file since 5019 was 5015, checked in by mervart, 11 years ago
File size: 616 bytes
Line 
1#ifndef GnssCenter_INPEDIT_H
2#define GnssCenter_INPEDIT_H
3
4#include <QtGui>
5#include "plugininterface.h"
6
7namespace GnssCenter {
8
9class t_keyword;
10class t_panel;
11
12class t_inpEdit : public QTabWidget, public t_pluginInterface {
13 Q_OBJECT
14 Q_INTERFACES(GnssCenter::t_pluginInterface)
15
16 public:
17 t_inpEdit();
18 ~t_inpEdit();
19 virtual bool expectInputFile() const {return true;}
20 virtual void setInputFile(const QString&);
21 virtual void show() {QTabWidget::show();}
22
23 private:
24 void readFile();
25 QString _fileName;
26 QMap<QString, t_keyword*> _keywords;
27};
28
29} // namespace GnssCenter
30
31#endif
32
Note: See TracBrowser for help on using the repository browser.