dtd.cc
来自「This library provides a C++ interface to」· CC 代码 · 共 40 行
CC
40 行
/* 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++/dtd.h>#include <libxml/tree.h>namespace xmlpp{ Dtd::Dtd(_xmlDtd* dtd): impl_(dtd){ dtd->_private = this;}Dtd::~Dtd(){ }std::string Dtd::get_name() const{ return (char*)impl_->name;}std::string Dtd::get_external_id() const{ return (char*)impl_->ExternalID;}std::string Dtd::get_system_id() const{ return (char*)impl_->SystemID;}} //namespace xmlpp
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?