Last change
on this file since 8768 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
|
Line | |
---|
1 | #ifndef GnssCenter_APP_H
|
---|
2 | #define GnssCenter_APP_H
|
---|
3 |
|
---|
4 | #include <QApplication>
|
---|
5 | #include <QEvent>
|
---|
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.