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 "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);
};