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