| 791 | } |
| 792 | |
| 793 | void XMLNode::SetValue( const char* str, bool staticMem ) |
| 794 | { |
| 795 | if ( staticMem ) { |
| 796 | _value.SetInternedStr( str ); |
| 797 | } |
| 798 | else { |
| 799 | _value.SetStr( str ); |
| 800 | } |
| 801 | } |
| 802 | |
| 803 | XMLNode* XMLNode::DeepClone(XMLDocument* target) const |
| 804 | { |
no test coverage detected