textnode.h
来自「This library provides a C++ interface to」· C头文件 代码 · 共 31 行
H
31 行
/* 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_TEXTNODE_H#define __LIBXMLPP_NODES_TEXTNODE_H#include <libxml++/nodes/contentnode.h>#include <libxml++/api_export.h>namespace xmlpp{/** Text Node. This will be instantiated by the parser.*/class LIBXMLPP_API TextNode : public ContentNode{public: explicit TextNode(_xmlNode* node); virtual ~TextNode();};} // namespace xmlpp#endif //__LIBXMLPP_NODES_TEXTNODE_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?