source: ntrip/trunk/BNC/src/app.h@ 8897

Last change on this file since 8897 was 8897, checked in by stuerze, 4 years ago

adaptation to qt5

File size: 377 bytes
RevLine 
[5067]1#ifndef GnssCenter_APP_H
2#define GnssCenter_APP_H
3
[8252]4#include <QApplication>
[8897]5#include <QFileOpenEvent>
6#include <QtGui>
[5067]7
[8897]8
9QCoreApplication* createApplication(int& argc, char* argv[], bool GUIenabled);
10
[5067]11class t_app : public QApplication {
12 Q_OBJECT
13 public:
[8897]14 t_app(int& argc, char* argv[]);
[5067]15 virtual ~t_app();
16 protected:
17 virtual bool event(QEvent* ev);
18 private:
19};
20
[8897]21
[5067]22#endif
Note: See TracBrowser for help on using the repository browser.