Newer
Older
#ifndef CORE_CONFIG_H
#define CORE_CONFIG_H
#include <QObject>
#include <QJsonObject>
class Config : public QObject
{
Q_OBJECT
private:
public:
explicit Config(const QString &configsDir, QObject *parent = 0);
QJsonObject get(const QString &name);
bool set(const QString &name, const QJsonObject &jsonObj);
};