This commit is contained in:
2021-11-05 17:00:48 +08:00
parent 5e421006e0
commit 377be64388
16 changed files with 431 additions and 35 deletions

View File

@ -0,0 +1,21 @@
#pragma once
#include "pch.h"
class ZZ_SysConfigger :public QObject
{
Q_OBJECT
public:
ZZ_SysConfigger(QObject *parent = nullptr);
virtual ~ZZ_SysConfigger();
public:
int LoadSettings_IS1();
int LoadSettings_iSIF();
int LoadSettings_System();
private:
QString m_qstrFilePath;
};