Get the last child node, or null if none exists.
| 718 | |
| 719 | /// Get the last child node, or null if none exists. |
| 720 | const XMLNode* LastChild() const { |
| 721 | return _lastChild; |
| 722 | } |
| 723 | |
| 724 | XMLNode* LastChild() { |
| 725 | return const_cast<XMLNode*>(const_cast<const XMLNode*>(this)->LastChild() ); |
nothing calls this directly
no test coverage detected