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