改进注释

This commit is contained in:
2025-07-25 01:03:51 +08:00
parent 6a8699e09e
commit 7a72b077e8
2 changed files with 6 additions and 6 deletions

View File

@@ -7,9 +7,9 @@ namespace hgl
namespace util
{
/**
* 命令行参数解辅助类
* 命令行参数解辅助类
*/
class CmdParse ///命令行参数解辅助类
class CmdParse ///命令行参数解辅助类
{
OSStringList args;

View File

@@ -13,7 +13,7 @@ namespace hgl
{
const char *xml_error_code[]=
{
"UNKNOW_ERROR"
"UNKNOWN_ERROR",
"NONE",
"NO_MEMORY",
@@ -143,7 +143,7 @@ namespace hgl
}
/**
* 重新开始一次解
* 重新开始一次解
*/
void XMLParse::Start(const char *charset)
{
@@ -162,11 +162,11 @@ namespace hgl
}
/**
* 解一段xml文本
* 解一段xml文本
* @param buf 文本缓冲区
* @param len 文本长度
* @param isFin 是否结束
* @return 此次解是否成功
* @return 此次解是否成功
*/
bool XMLParse::Parse(const char *buf,int len,bool isFin)
{