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/iXmlTable.h

34 lines
718 B
C

#pragma once
#include "iXmlField.h"
#include "iXmlBaseItem.h"
class I_XMLMANAGER_EXPORT iXmlTable : public iXmlBaseItem
{
public:
iXmlTable(QObject* parent = 0);
~iXmlTable();
// 解析xml节点到List
virtual void parseInfo(const QDomElement& e);
// 把List分配到成员变量
// 输入开始的m_listValues中index并且返回下一个index
virtual int allocateInfo(int nIndex);
// 获取关键字段(索引+Name
bool getKeyFields(QMap<int, QString>& mapKeyFields);
void clear();
protected:
virtual void initXmlTags();
public:
QString m_sAlias; //中文名称
vecXmlFieldsPtr m_vecXmlFields;
};
typedef QVector<iXmlTable*> vecXmlTablesPtr;