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 "wdtDefineBase.h"
#include "mSysUtilsWDT_global.h"
class wdtAlgItem;
// 产能方法定义(某井型-井别 之下 的方法)
class M_SYSUTILS_WDT_EXPORT wdtDefineMethod : public wdtDefineBase
{
public:
wdtDefineMethod();
~wdtDefineMethod();
// 把List分配到成员变量
// 输入开始的m_listValues中index,并且返回下一个index
virtual int allocateInfo(int nIndex);
protected:
virtual void initXmlTags();
// 绑定的AlgItem
wdtAlgItem* m_pAlgItem;
};
typedef QVector<wdtDefineMethod*> vecWdtMethodDefinesPtr;