Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
qtxml
QtXmlNode.cxx
Go to the documentation of this file.
1
12
#include "
QtXmlNode.h
"
13
14
#include <cassert>
15
16
using namespace
hippodraw;
17
18
QtXmlNode::
19
QtXmlNode
(
const
QtXmlNode
& )
20
:
XmlNode
()
21
{
22
}
23
24
QtXmlNode::
25
QtXmlNode
()
26
{
27
}
28
29
QtXmlNode::
30
~QtXmlNode
()
31
{
32
}
33
34
void
QtXmlNode::appendChild
(
const
XmlNode
& child )
35
{
36
try
{
37
const
QtXmlNode
& qtelem
38
= dynamic_cast <
const
QtXmlNode
& > ( child );
39
m_node
.
appendChild
( qtelem.
m_node
);
40
}
41
catch
( ... ) {
42
assert (
false
);
43
}
44
}
Generated for HippoDraw Class Library by