Get the first child node, or null if none exists.
| 767 | |
| 768 | /// Get the first child node, or null if none exists. |
| 769 | const XMLNode* FirstChild() const { |
| 770 | return _firstChild; |
| 771 | } |
| 772 | |
| 773 | XMLNode* FirstChild() { |
| 774 | return _firstChild; |
no test coverage detected