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++

This file contains ambiguous Unicode characters!

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