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/iGui/iGuiGridPty/iBdyInfo.h.bak

23 lines
565 B
C

This file contains ambiguous Unicode characters!

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();
public:
QString m_sName; //对应的英文标识x1,ne,se等
QString m_sAlias; //对应的中文标识边界距离1上边界等
double m_dValue; //距离
QString m_sType; //类型,封闭 tr("CloseB")、定压 tr("FixP"),后续可以扩充为其他
bool m_bValid; //是否有效
};