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/nmNum/nmXml/nmXmlUtils.h

18 lines
569 B
C

#pragma once
#include "nmXmlData.h"
#include "iXmlUtilBase.h"
// xml文件解析接口类对应的数据对象
class NM_XML_EXPORT nmXmlUtils : public iXmlUtilBase
{
public:
/// @brief 解析xml文件并且存入缓存
/// @param (in&out) pVecNmXmlDatas 数据存储载体
/// @param (in) sFile 文件通常是全路径后缀可以是xml也可以是dat
/// @note 对于加密模式软件会自动查找对应的dat模式
static bool loadNmXmlDatas(vecNmXmlDatas* pVecNmXmlDatas, \
QString sFile);
};