| 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 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.