| 769 | } |
| 770 | |
| 771 | void XMLNode::SetValue( const char* str, bool staticMem ) |
| 772 | { |
| 773 | if ( staticMem ) { |
| 774 | _value.SetInternedStr( str ); |
| 775 | } |
| 776 | else { |
| 777 | _value.SetStr( str ); |
| 778 | } |
| 779 | } |
| 780 | |
| 781 | XMLNode* XMLNode::DeepClone(XMLDocument* target) const |
| 782 | { |
no test coverage detected