What is the tinyxml2 (v2) replacement for v1's TiXmlNode enumeration?
TinyXML v1 can switch on node type, but how to do the same with TinyXML v2's XMLNode.
switch (node->Type()) // v1 node type selector
{
case TiXmlNode::DOCUMENT:
wcout << L"Hello Document";
break;
The base class
XMLNode
contains a number of virtual conversion methods, which returnNULL
or0
unless the node is actually of the specified type.For example, if you call
ToText()
on something that is actually anXMLText
, you'll get a validXMLText*
result, otherwise you'll getNULL
.Here's the methods available (in
XMLNode
):I'm not sure why this was done; perhaps the type enumeration wasn't that useful in practice, or maybe it's to support the internal
XMLHandle
class (which implements all those cast methods). To convert your code, you'd go from this:into this: