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

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

adaptation to qt5

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