c语言编写的xml解析器可以方便的遍历插入删除节点等操作的

源代码在线查看: parse_error.cc

软件大小: 288 K
上传用户: gjq2000
关键词: xml c语言 编写 删除
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include "parse_error.h"								namespace xmlpp {								parse_error::parse_error(const std::string& message)				: exception(message)				{				}								parse_error::~parse_error() throw()				{}								void parse_error::Raise() const				{				  throw *this;				}								exception* parse_error::Clone() const				{				  return new parse_error(*this);				}								} //namespace xmlpp											

相关资源