cdatanode.h

来自「This library provides a C++ interface to」· C头文件 代码 · 共 33 行

H
33
字号
/* 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>#include <libxml++/api_export.h>namespace xmlpp{/** CData node. This will be instantiated by the parser. * */class LIBXMLPP_API CdataNode : public ContentNode{public:  explicit CdataNode(_xmlNode* node);  virtual ~CdataNode();};} // namespace xmlpp#endif //__LIBXMLPP_NODES_TEXTNODE_H

⌨️ 快捷键说明

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