| 134 | |
| 135 | |
| 136 | TiXmlNode::TiXmlNode( NodeType _type ) : TiXmlBase() |
| 137 | { |
| 138 | parent = 0; |
| 139 | type = _type; |
| 140 | firstChild = 0; |
| 141 | lastChild = 0; |
| 142 | prev = 0; |
| 143 | next = 0; |
| 144 | } |
| 145 | |
| 146 | |
| 147 | TiXmlNode::~TiXmlNode() |
nothing calls this directly
no outgoing calls
no test coverage detected