Get the previous (left) sibling node of this node.
| 799 | |
| 800 | /// Get the previous (left) sibling node of this node. |
| 801 | const XMLNode* PreviousSibling() const { |
| 802 | return _prev; |
| 803 | } |
| 804 | |
| 805 | XMLNode* PreviousSibling() { |
| 806 | return _prev; |
nothing calls this directly
no test coverage detected