source:
ntrip/trunk/GnssCenter/inpedit/tabwidget.h@
5093
Last change on this file since 5093 was 5090, checked in by , 12 years ago | |
---|---|
File size: 405 bytes |
Line | |
---|---|
1 | #ifndef GnssCenter_TABWIDGET_H |
2 | #define GnssCenter_TABWIDGET_H |
3 | |
4 | #include <QtGui> |
5 | |
6 | namespace GnssCenter { |
7 | |
8 | class t_keyword; |
9 | class t_panel; |
10 | |
11 | class t_tabWidget : public QTabWidget { |
12 | public: |
13 | t_tabWidget(); |
14 | ~t_tabWidget(); |
15 | void setInputFile(const QString&); |
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.