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

Last change on this file since 5069 was 5069, checked in by mervart, 11 years ago
File size: 304 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
19#endif
20
Note: See TracBrowser for help on using the repository browser.