mirror of
http://172.16.0.230/r/SIF/TowerOptoSifAndSpectral.git
synced 2025-10-18 19:39:43 +08:00
123445
This commit is contained in:
25
source/Settings/SystemConfigger.cpp
Normal file
25
source/Settings/SystemConfigger.cpp
Normal file
@ -0,0 +1,25 @@
|
||||
#include "SystemConfigger.h"
|
||||
|
||||
ZZ_SysConfigger::ZZ_SysConfigger(QObject *parent /*= nullptr*/)
|
||||
{
|
||||
m_qstrFilePath = QCoreApplication::applicationDirPath()+ "/Settings/DeviceSettings.ini";
|
||||
}
|
||||
|
||||
ZZ_SysConfigger::~ZZ_SysConfigger()
|
||||
{
|
||||
}
|
||||
|
||||
int ZZ_SysConfigger::LoadSettings_IS1()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int ZZ_SysConfigger::LoadSettings_iSIF()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int ZZ_SysConfigger::LoadSettings_System()
|
||||
{
|
||||
return 0;
|
||||
}
|
21
source/Settings/SystemConfigger.h
Normal file
21
source/Settings/SystemConfigger.h
Normal 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;
|
||||
};
|
Reference in New Issue
Block a user