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

Last change on this file since 5067 was 5067, checked in by mervart, 11 years ago
File size: 333 bytes
Line 
1#ifndef GnssCenter_APP_H
2#define GnssCenter_APP_H
3
4#include <QtGui>
5
6class t_pgmCore;
7
8class t_app : public QApplication {
9 Q_OBJECT
10 public:
11 t_app(int& argc, char* argv[], bool GUIenabled);
12 virtual ~t_app();
13 protected:
14 virtual bool event(QEvent* ev);
15 private:
16 t_pgmCore* _pgmCore;
17};
18
19extern t_pgmCore* PGM_CORE;
20
21#endif
22
Note: See TracBrowser for help on using the repository browser.