Get the next (right) sibling node of this node.
| 821 | |
| 822 | /// Get the next (right) sibling node of this node. |
| 823 | const XMLNode* NextSibling() const { |
| 824 | return _next; |
| 825 | } |
| 826 | |
| 827 | XMLNode* NextSibling() { |
| 828 | return _next; |
nothing calls this directly
no test coverage detected