This commit is contained in:
2026-07-01 03:32:41 +00:00
commit cd3dca042d
45 changed files with 8072 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#pragma once
#include <QString>
class ConfigHelper
{
public:
static ConfigHelper& instance();
QString getValue(const QString& section, const QString& key) const;
bool setValue(const QString& section, const QString& key, const QString& value);
QString configPath() const;
private:
ConfigHelper();
bool migrateLegacyIniIfNeeded();
QString m_configPath;
};