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 "iGuiGridPty_global.h"
// 该类只是为了方便进行边界相关信息的处理
// 进行边界类型信息的扩展而新增
class X_GUI_GRIDPTY_EXPORT iBdyInfo
{
public:
iBdyInfo();
QString m_sName; //对应的英文标识,如:x1,ne,se等
QString m_sAlias; //对应的中文标识,如:边界距离1,上边界等
double m_dValue; //距离
QString m_sType; //类型,封闭 tr("CloseB")、定压 tr("FixP"),后续可以扩充为其他
bool m_bValid; //是否有效
};