cdatanode.h
来自「c语言编写的xml解析器可以方便的遍历插入删除节点等操作的」· C头文件 代码 · 共 32 行
H
32 行
/* 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_NODES_CDATANODE_H#define __LIBXMLPP_NODES_CDATANODE_H#include <libxml++/nodes/contentnode.h>namespace xmlpp{/** CData node. This will be instantiated by the parser. * */class CdataNode : public ContentNode{public: explicit CdataNode(_xmlNode* node); virtual ~CdataNode();};} // namespace xmlpp#endif //__LIBXMLPP_NODES_TEXTNODE_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?