This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
#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, float& f);
};