Last change
on this file since 8622 was 8252, checked in by stoecker, 7 years ago |
see #105 - reenable Qt4 build options, drop generic version dependend includes, replace by direct requirements, remaining QtCore lines should also be replaced
|
File size:
288 bytes
|
Rev | Line | |
---|
[5067] | 1 | #ifndef GnssCenter_APP_H
|
---|
| 2 | #define GnssCenter_APP_H
|
---|
| 3 |
|
---|
[8252] | 4 | #include <QApplication>
|
---|
| 5 | #include <QEvent>
|
---|
[5067] | 6 |
|
---|
| 7 | class t_app : public QApplication {
|
---|
| 8 | Q_OBJECT
|
---|
| 9 | public:
|
---|
| 10 | t_app(int& argc, char* argv[], bool GUIenabled);
|
---|
| 11 | virtual ~t_app();
|
---|
| 12 | protected:
|
---|
| 13 | virtual bool event(QEvent* ev);
|
---|
| 14 | private:
|
---|
| 15 | };
|
---|
| 16 |
|
---|
| 17 | #endif
|
---|
| 18 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.