⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 contentnode.cc

📁 c语言编写的xml解析器可以方便的遍历插入删除节点等操作的
💻 CC
字号:
/* xml++.cc * libxml++ and this file are copyright (C) 2000 by Ari Johnson, and * are covered by the GNU Lesser General Public License, which should be * included with libxml++ as the file COPYING. */#include <libxml++/nodes/contentnode.h>#include <libxml++/exceptions/internal_error.h>#include <libxml/tree.h>namespace xmlpp{  ContentNode::ContentNode(xmlNode* node): Node(node){}ContentNode::~ContentNode(){}std::string ContentNode::get_content() const{  if(cobj()->type == XML_ELEMENT_NODE)    throw internal_error("this node type doesn't have content");  return cobj()->content ? (char*)cobj()->content : "";}void ContentNode::set_content(const std::string& content){   if(cobj()->type == XML_ELEMENT_NODE)      throw internal_error("can't set content for this node type");   xmlNodeAddContent(cobj(), (xmlChar*)content.c_str());}bool ContentNode::is_white_space() const{  return xmlIsBlankNode(const_cast<_xmlNode*>(cobj()));}} //namespace xmlpp

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -