config:更改为Qt6配置。

This commit is contained in:
2024-05-28 09:17:23 +08:00
parent 33064c7cb3
commit 9ddfbc6878
4 changed files with 14 additions and 10 deletions

View File

@@ -19,16 +19,17 @@ public:
~ConfigIni() = default;
public:
bool set_work_exe(const std::string& dir);
bool set_xml_path(const std::string& path);
bool set_work_exe(const std::string& dir);
bool set_xml_path(const std::string& path);
OprBase get_config();
private:
bool parse_ini();
private:
std::string work_dir_{};
std::string ini_path_{};
CSimpleIni ini_{};
CSimpleIniA ini_{};
OprBase opr_base_{};
};