parse_error.cc

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

CC
25
字号
#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

⌨️ 快捷键说明

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