代码拉取完成,页面将自动刷新
#include "CheckEnabled.h"
#include "ParseXMLHelper.h"
using namespace InformationReleaseSystem;
//////////////////////////////////////////////////////////////////////////
//CheckEnabled
/** @fn CheckEnabled::CheckEnabled(xmlNodePtr pNode)
* @brief 构造函数
* @param (IN)xmlNodePtr pNode 节点指针
* @return None
*/
CheckEnabled::CheckEnabled(xmlNodePtr pNode)
:iId(0),
bEnabled(false)
{
Parse(pNode);
}
/** @fn voidCheckEnabled::Parse(xmlNodePtr pNode)
* @brief 解析函数
* @param (IN)xmlNodePtr pNode 节点指针
* @return void
*/
void CheckEnabled::Parse(xmlNodePtr pNode)
{
if (NULL == pNode)
{
return;
}
pNode = pNode->children;
if (NULL == pNode)
{
return;
}
if (FindElem(pNode, "id"))
{
iId = GetValueFormNodePtr<int>(pNode);
pNode = pNode->next;
}
if (FindElem(pNode, "enabled"))
{
bEnabled = GetValueFormNodePtr<bool>(pNode);
pNode = pNode->next;
}
}
/** @fn xmlNodePtrCheckEnabled::CreateXmlNodePtr()
* @brief 生成xml节点
* @return 节点指针
*/
xmlNodePtr CheckEnabled::CreateXmlNodePtr()
{
if (g_hDllInst == NULL)
{
return NULL;
}
dllxmlNewNode xmlNewNode = (dllxmlNewNode)GetProcAddress(g_hDllInst, "xmlNewNode");
dllxmlNewChild xmlNewChild= (dllxmlNewChild)GetProcAddress(g_hDllInst, "xmlNewChild");
xmlNodePtr pNodeCheckEnabled = xmlNewNode(NULL, BAD_CAST"CheckEnabled");
xmlNewChild(pNodeCheckEnabled, NULL, BAD_CAST"id", (xmlChar *)StringUtil::T2String(iId).c_str());
xmlNewChild(pNodeCheckEnabled, NULL, BAD_CAST"enabled", (xmlChar *)StringUtil::T2String(bEnabled).c_str());
return pNodeCheckEnabled;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。