| 761 | } |
| 762 | |
| 763 | const char* XMLNode::Value() const |
| 764 | { |
| 765 | // Edge case: XMLDocuments don't have a Value. Return null. |
| 766 | if ( this->ToDocument() ) |
| 767 | return 0; |
| 768 | return _value.GetStr(); |
| 769 | } |
| 770 | |
| 771 | void XMLNode::SetValue( const char* str, bool staticMem ) |
| 772 | { |
no test coverage detected