mirror of
http://172.16.0.230/r/SIF/TowerOptoSifAndSpectral.git
synced 2025-10-18 19:39:43 +08:00
21 lines
291 B
C++
21 lines
291 B
C++
#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;
|
|
}; |