51798c321219f9cde749c03d09bb9fa8d1249a9d
[platform/upstream/libxml++.git] / libxml++ / nodes / commentnode.h
1 /* commentnode.h
2  * libxml++ and this file are copyright (C) 2000 by Ari Johnson, and
3  * are covered by the GNU Lesser General Public License, which should be
4  * included with libxml++ as the file COPYING.
5  */
6
7 #ifndef __LIBXMLPP_NODES_COMMENTNODE_H
8 #define __LIBXMLPP_NODES_COMMENTNODE_H
9
10 #include <libxml++/nodes/contentnode.h>
11
12 namespace xmlpp
13 {
14
15 /** Comment Node. This will be instantiated by the parser.
16  */
17 class LIBXMLPP_API CommentNode : public ContentNode
18 {
19 public:
20   explicit CommentNode(_xmlNode* node);
21   ~CommentNode() override;
22 };
23
24 } // namespace xmlpp
25
26 #endif //__LIBXMLPP_NODES_COMMENTNODE_H
27
28
29