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