Returns true if this node has no children.
| 758 | |
| 759 | /// Returns true if this node has no children. |
| 760 | bool NoChildren() const { |
| 761 | return !_firstChild; |
| 762 | } |
| 763 | |
| 764 | /// Get the first child node, or null if none exists. |
| 765 | const XMLNode* FirstChild() const { |