You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nmWATI/Include/iData/iSysUtils/iParameterUtils.h

20 lines
456 B
C

#pragma once
#include "iSysUtils_global.h"
class iParameter;
class iUnitGroup;
/// @brief 参数描述的公用调用类
/// @note 该类只是一个中介内部调用的zxSysUtil内部的缓存变量
class I_SYSUTILS_EXPORT iParameterUtils
{
public:
// sPara 参数名称,可以是 英文也可以是中文,软件会自动判断
static iParameter* getPara(QString sPara);
static bool getParaValue(QString sPara, double& f);
};