QtXmlNode.cxx
Go to the documentation of this file.
1 
12 #include "QtXmlNode.h"
13 
14 #include <cassert>
15 
16 using namespace hippodraw;
17 
19 QtXmlNode ( const QtXmlNode & )
20  : XmlNode ()
21 {
22 }
23 
26 {
27 }
28 
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 doxygen