Javier Gálvez Guerrero wrote:
Nice!! Thanks a lot! Your approach is quite interesting; I'll see if it
meets my requirements.
I thought that XMLSize_t could not be treated as an index (as a common
integer). That known I can continue coding.
XMLSize_t is just a convenient typedef for the appropriate built-in
integral type for the compiler and platform.
Please make sure you review the DOM samples for more information about
using the APIs. In particular, I suggest you consider using
DOMNode::getNextChild() and DOMNode::getNextSibling() to walk the children
of an element, if you care about efficiency.
Dave