This library provides a C++ interface to XML files. It uses libxml 2 to access the XML files, and in

源代码在线查看: parse_error.cc

软件大小: 429 K
上传用户: syxie
关键词: files interface XML provides
下载地址: 免注册下载 普通下载 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											

相关资源