source:
ntrip/trunk/GnssCenter/src/inpedit/inpfile.h@
4941
Last change on this file since 4941 was 4871, checked in by , 12 years ago | |
---|---|
File size: 362 bytes |
Line | |
---|---|
1 | #ifndef RTGUI_INPFILE_H |
2 | #define RTGUI_INPFILE_H |
3 | |
4 | #include <QtGui> |
5 | |
6 | namespace RTGUI { |
7 | |
8 | class t_keyword; |
9 | class t_panel; |
10 | |
11 | class 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.