source: ntrip/trunk/GnssCenter/src/app.h@ 4936

Last change on this file since 4936 was 4863, checked in by mervart, 11 years ago
File size: 473 bytes
Line 
1#ifndef RTGUI_APP_H
2#define RTGUI_APP_H
3
4#include <QtGui>
5
6namespace RTGUI {
7
8class t_app : public QApplication {
9 Q_OBJECT
10
11 friend class t_settings;
12
13 public:
14 t_app(int& argc, char* argv[], bool GUIenabled);
15 virtual ~t_app();
16
17 void setConfFileName(const QString& confFileName);
18 const QString& confFileName() const {return _confFileName;}
19
20 private:
21 QString _confFileName;
22 QSettings::SettingsMap _settings;
23};
24
25} // namespace RTGUI
26
27#endif
28
Note: See TracBrowser for help on using the repository browser.