| 738 | } |
| 739 | |
| 740 | const char* XMLNode::Value() const |
| 741 | { |
| 742 | // Edge case: XMLDocuments don't have a Value. Return null. |
| 743 | if ( this->ToDocument() ) |
| 744 | return 0; |
| 745 | return _value.GetStr(); |
| 746 | } |
| 747 | |
| 748 | void XMLNode::SetValue( const char* str, bool staticMem ) |
| 749 | { |
no test coverage detected