source: ntrip/trunk/GnssCenter/inpedit/tabwidget.h@ 5105

Last change on this file since 5105 was 5099, checked in by mervart, 11 years ago
File size: 468 bytes
Line 
1#ifndef GnssCenter_TABWIDGET_H
2#define GnssCenter_TABWIDGET_H
3
4#include <QtGui>
5
6namespace GnssCenter {
7
8class t_keyword;
9class t_panel;
10
11class t_tabWidget : public QTabWidget {
12 public:
13 t_tabWidget();
14 ~t_tabWidget();
15 void readInputFile(const QString&);
16 void writeInputFile(const QString&);
17 private:
18 QString _fileName;
19 QMap<QString, t_keyword*> _keywords;
20 QStringList _staticLines;
21};
22
23} // namespace GnssCenter
24
25#endif
26
Note: See TracBrowser for help on using the repository browser.