| 815 | } |
| 816 | |
| 817 | const char* XMLNode::Value() const |
| 818 | { |
| 819 | // Edge case: XMLDocuments don't have a Value. Return null. |
| 820 | if ( this->ToDocument() ) |
| 821 | return 0; |
| 822 | return _value.GetStr(); |
| 823 | } |
| 824 | |
| 825 | void XMLNode::SetValue( const char* str, bool staticMem ) |
| 826 | { |
no test coverage detected