| 805 | } |
| 806 | |
| 807 | const char* XMLNode::Value() const |
| 808 | { |
| 809 | // Edge case: XMLDocuments don't have a Value. Return null. |
| 810 | if (this->ToDocument()) |
| 811 | return 0; |
| 812 | return _value.GetStr(); |
| 813 | } |
| 814 | |
| 815 | void XMLNode::SetValue(const char* str, bool staticMem) |
| 816 | { |
no test coverage detected