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