mirror of
https://github.com/QuasarApp/QuasarAppLib.git
synced 2025-04-26 17:54:40 +00:00
51 lines
965 B
C++
51 lines
965 B
C++
/*
|
|
* Copyright (C) 2021-2022 QuasarApp.
|
|
* Distributed under the lgplv3 software license, see the accompanying
|
|
* Everyone is permitted to copy and distribute verbatim copies
|
|
* of this license document, but changing it is not allowed.
|
|
*/
|
|
|
|
|
|
#ifndef SETTINGS_H
|
|
#define SETTINGS_H
|
|
|
|
#include "quasarapp_global.h"
|
|
#include "isettings.h"
|
|
|
|
namespace QuasarAppUtils {
|
|
|
|
/**
|
|
* @brief The Settings class This is wraper of the QSettings object.
|
|
*
|
|
* Example of initialisation :
|
|
*
|
|
* ```
|
|
* auto settingsInstance = Setting::init();
|
|
* ```
|
|
*
|
|
* @see Settings::init
|
|
*/
|
|
class QUASARAPPSHARED_EXPORT Settings: public ISettings
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Settings();
|
|
|
|
// ISettings interface
|
|
protected:
|
|
|
|
|
|
|
|
void syncImplementation();
|
|
QVariant getValueImplementation(const QString &key, const QVariant &def);
|
|
void setValueImplementation(const QString key, const QVariant &value);
|
|
|
|
|
|
private:
|
|
QSettings *_settings = nullptr;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // SETTINGS_H
|