046205c4f347692ecf88bb7f375af810b6073e9c
[platform/upstream/libxml++.git] / libxml++ / nodes / commentnode.cc
1 /* commentnode.cc
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 #include <libxml++/nodes/commentnode.h>
8 #include <libxml++/exceptions/internal_error.h>
9
10 #include <libxml/tree.h>
11
12 namespace xmlpp
13 {
14
15 CommentNode::CommentNode(xmlNode* node)
16 : ContentNode(node)
17 {}
18
19 CommentNode::~CommentNode()
20 {}
21
22 } //namespace xmlpp
23