domdocument.h.svn-base

来自「wince c++ 下 开发的 rss 阅读器源代码」· SVN-BASE 代码 · 共 56 行

SVN-BASE
56
字号
/* * libsgml -- SGML state machine parsing library. *  * Copyright (c) 2002 Uninformed Research (http://www.uninformed.org) * All rights reserved. * * skape * mmiller@hick.org *//** * @defgroup DOMDocument Document * @ingroup DOMNode * * Document node manipulation. * * @{ */#ifndef _LIBSGML_DOMDOCUMENT_H#define _LIBSGML_DOMDOCUMENT_H#ifdef __cplusplusextern "C" {#endif#include "DomNode.h"/** * @def DOM_DOCUMENT * * Defines a DOM_DOCUMENT as a DOM_NODE.  This gives us "inheritance" in C. */#define DOM_DOCUMENT DOM_NODE/** * Constructs an empty DOM document. * * @return An empty DOM document node. */DOM_DOCUMENT *domDocumentNew();/** * Recursively destroys a DOM document. * * @param  doc [in] The document to be destroyed. */void domDocumentDestroy(DOM_DOCUMENT *doc);/** * @} */#ifdef __cplusplus}#endif#endif

⌨️ 快捷键说明

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