| 793 | } |
| 794 | |
| 795 | const char* XMLNode::Value() const |
| 796 | { |
| 797 | // Edge case: XMLDocuments don't have a Value. Return null. |
| 798 | if ( this->ToDocument() ) |
| 799 | return 0; |
| 800 | return _value.GetStr(); |
| 801 | } |
| 802 | |
| 803 | void XMLNode::SetValue( const char* str, bool staticMem ) |
| 804 | { |
no test coverage detected