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"
#include "mSysUtilsWDT_global.h"
// 产能 定义 基类
class M_SYSUTILS_WDT_EXPORT wdtDefineBase : public iModelInfoBase
{
public:
wdtDefineBase();
~wdtDefineBase();
// 把List分配到成员变量
// 输入开始的m_listValues中index,并且返回下一个index
virtual int allocateInfo(int nIndex);
protected:
virtual void initXmlTags();
QString m_sSerie; //从属序列,默认:WDT
QStringList m_listParas; //涉及参数列表
};