contentnode.cc

来自「This library provides a C++ interface to」· CC 代码 · 共 45 行

CC
45
字号
/* 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");   xmlNodeSetContent(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 + =
减小字号Ctrl + -
显示快捷键?