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/iXmlManager/Models/iModelInfoBdy.h

30 lines
569 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 "iModelInfoBase.h"
/// @brief BDY边界
class I_XMLMANAGER_EXPORT iModelInfoBdy : public iModelInfoBase
{
Q_OBJECT
public:
iModelInfoBdy();
~iModelInfoBdy();
// 把List分配到成员变量
// 输入开始的m_listValues中index并且返回下一个index
virtual int allocateInfo(int nIndex);
// 序列化
virtual void onSerialize(ZxSerializer* ser);
virtual void onDeserialize(ZxSerializer* ser);
protected:
virtual void initXmlTags();
public:
QStringList m_listParas; //边界参数
};