dtd.h
来自「This library provides a C++ interface to」· C头文件 代码 · 共 47 行
H
47 行
/* node.h * 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. */#ifndef __LIBXMLPP_DTD_H#define __LIBXMLPP_DTD_H#include <libxml++/attribute.h>#include <libxml++/api_export.h>#include <list>#include <map>#ifndef DOXYGEN_SHOULD_SKIP_THISextern "C" { struct _xmlDtd;}#endif //DOXYGEN_SHOULD_SKIP_THIS4namespace xmlpp{/** Represents XML DTDs. * */class LIBXMLPP_API Dtd //TODO: Derive from Node?{public: Dtd(_xmlDtd* dtd); ~Dtd(); std::string get_name() const; std::string get_external_id() const; std::string get_system_id() const; private: _xmlDtd* impl_;};} // namespace xmlpp#endif //__LIBXMLPP_DTD_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?