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