#ifndef TEMPCONFIG_H #define TEMPCONFIG_H #include #include class TempConfig { public: TempConfig() = default; ~TempConfig(); TempConfig &set(const QString &key, const QString &value); TempConfig &set(const QString &key, int value); TempConfig &set(const QString &key, bool value); private: QMap resetValues; }; #endif //TEMPCONFIG_H