source:
ntrip/trunk/GnssCenter/main/app.h@
5681
Last change on this file since 5681 was 5086, checked in by , 12 years ago | |
---|---|
File size: 545 bytes |
Rev | Line | |
---|---|---|
[5001] | 1 | #ifndef GnssCenter_APP_H |
2 | #define GnssCenter_APP_H | |
[4814] | 3 | |
4 | #include <QtGui> | |
5 | ||
[5001] | 6 | namespace GnssCenter { |
[4863] | 7 | |
8 | class 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 | ||
[5086] | 20 | public slots: |
21 | void slotMessage(QByteArray msg); | |
22 | ||
[4814] | 23 | private: |
[4863] | 24 | QString _confFileName; |
25 | QSettings::SettingsMap _settings; | |
[4814] | 26 | }; |
27 | ||
[5001] | 28 | } // namespace GnssCenter |
[4863] | 29 | |
[4814] | 30 | #endif |
31 |
Note:
See TracBrowser
for help on using the repository browser.