Get the first child node, or null if none exists.
| 700 | |
| 701 | /// Get the first child node, or null if none exists. |
| 702 | const XMLNode* FirstChild() const { |
| 703 | return _firstChild; |
| 704 | } |
| 705 | |
| 706 | XMLNode* FirstChild() { |
| 707 | return _firstChild; |
no test coverage detected