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

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