source: ntrip/trunk/BNC/bncsettings.h@ 4072

Last change on this file since 4072 was 4072, checked in by mervart, 12 years ago
File size: 448 bytes
RevLine 
[1535]1#ifndef BNCSETTINGS_H
2#define BNCSETTINGS_H
3
[4072]4#include <QMutex>
[1535]5
[4070]6class bncApp;
7
8class bncSettings {
[1535]9 public:
[1769]10 bncSettings(bool noInit = false);
[4070]11 ~bncSettings();
12 QVariant value(const QString& key,
13 const QVariant& defaultValue = QVariant()) const;
14 void setValue(const QString &key, const QVariant& value);
15 void remove(const QString& key );
16 void sync();
[1535]17 private:
[4072]18 bncApp* _bncApp;
19 static QMutex _mutex;
[1535]20};
21
22#endif
Note: See TracBrowser for help on using the repository browser.