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