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.
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 "wdtAlgItem.h"
// 产能算法及绘图相关定义 Group 组合(某井型-井别-方法 之下 的具体算法 组合)
// 本类借鉴自 iIprAlgItemGroup
class M_SYSUTILS_WDT_EXPORT wdtAlgItemGroup : public iModelInfoBase
{
public :
wdtAlgItemGroup ( ) ;
~ wdtAlgItemGroup ( ) ;
// 解析xml节点到List
virtual void parseInfo ( const QDomElement & e ) ;
// 把List分配到成员变量
// 输入开始的m_listValues中index, 并且返回下一个index
virtual int allocateInfo ( int nIndex ) ;
// 写入xml
void writeInfo ( QDomElement & e , QDomDocument & doc ) ;
protected :
virtual void initXmlTags ( ) ;
public :
vecWdtAlgItemsPtr m_vecWdtAlgItems ;
QStringList m_listSrcTableCols ;
} ;
typedef QVector < wdtAlgItemGroup * > vecWdtAlgItemGroupsPtr ;