source: ntrip/trunk/GnssCenter/src/inpedit/inpfile.h@ 4936

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