mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-21 04:16:12 +00:00
23 lines
404 B
C++
23 lines
404 B
C++
|
|
#ifndef TEMPCONFIG_H
|
|
#define TEMPCONFIG_H
|
|
|
|
#include <QString>
|
|
#include <QVariant>
|
|
|
|
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<QString, QVariant> resetValues;
|
|
};
|
|
|
|
#endif //TEMPCONFIG_H
|