| 845 | } |
| 846 | |
| 847 | const char* XMLNode::Value() const |
| 848 | { |
| 849 | // Edge case: XMLDocuments don't have a Value. Return null. |
| 850 | if ( this->ToDocument() ) |
| 851 | return 0; |
| 852 | return _value.GetStr(); |
| 853 | } |
| 854 | |
| 855 | void XMLNode::SetValue( const char* str, bool staticMem ) |
| 856 | { |
no test coverage detected