| 783 | } |
| 784 | |
| 785 | const char* XMLNode::Value() const |
| 786 | { |
| 787 | // Edge case: XMLDocuments don't have a Value. Return null. |
| 788 | if ( this->ToDocument() ) |
| 789 | return 0; |
| 790 | return _value.GetStr(); |
| 791 | } |
| 792 | |
| 793 | void XMLNode::SetValue( const char* str, bool staticMem ) |
| 794 | { |
no test coverage detected