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 WEL井型
class I_XMLMANAGER_EXPORT iModelInfoWel : public iModelInfoBase
{
public:
iModelInfoWel(QObject* parent = 0);
~iModelInfoWel();
// 解析xml节点到List
virtual void parseInfo(const QDomElement& e);
// 把List分配到成员变量
// 输入开始的m_listValues中index,并且返回下一个index
virtual int allocateInfo(int nIndex);
// 序列化
virtual void onSerialize(ZxSerializer* ser);
virtual void onDeserialize(ZxSerializer* ser);
protected:
virtual void initXmlTags();
//QString m_sWaste; //测试
// WellMap中涉及的每种井型的基础参数
QStringList m_listBaseParas;
};