Return true if the current node is an empty element.
Declared in <balxml_reader.h>
virtual
bool
isEmptyElement() const = 0;
That is, return true if the node type is e_NODE_TYPE_ELEMENT and the element ends with />; and false otherwise. Note that a self-closing element (written with / before the closing >) will be considered empty, but an element with separate opening and closing tags will not.
true if the current node is an empty element, and false otherwise