source:
ntrip/trunk/GnssCenter/src/inpedit/inpfile.h@
5000
Last change on this file since 5000 was 5000, checked in by , 10 years ago | |
---|---|
File size: 382 bytes |
Line | |
---|---|
1 | #ifndef GnssCenter_INPFILE_H |
2 | #define GnssCenter_INPFILE_H |
3 | |
4 | #include <QtGui> |
5 | |
6 | namespace GnssCenter { |
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 GnssCenter |
23 | |
24 | #endif |
25 |
Note:
See TracBrowser
for help on using the repository browser.