Newer
Older
#pragma once
#include <QObject>
#include <QJsonObject>
class ConfigHandler : public QObject
{
Q_OBJECT
public:
explicit ConfigHandler(QObject *parent = nullptr);
QJsonObject getAppConfigApplication() const;
QJsonObject getAppConfigInstallTypes() const;
void importAppConfigApplication();
void importAppConfigInstallTypes();
QString convertPathString(const QString &path) const;
QJsonObject appConfigApplication_;
QJsonObject appConfigInstallTypes_;
};