Imported Upstream version 2.91.1
[platform/upstream/libxml++.git] / libxml++ / nodes / processinginstructionnode.cc
1 /* processinginstructionsnode.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/processinginstructionnode.h>
8
9 #include <libxml/tree.h>
10
11 namespace xmlpp
12 {
13   
14 ProcessingInstructionNode::ProcessingInstructionNode(xmlNode* node)
15 : ContentNode(node)
16 {}
17
18 ProcessingInstructionNode::~ProcessingInstructionNode()
19 {}
20
21 } //namespace xmlpp
22