| 801 | } |
| 802 | |
| 803 | void XMLNode::SetValue( const char* str, bool staticMem ) |
| 804 | { |
| 805 | if ( staticMem ) { |
| 806 | _value.SetInternedStr( str ); |
| 807 | } |
| 808 | else { |
| 809 | _value.SetStr( str ); |
| 810 | } |
| 811 | } |
| 812 | |
| 813 | XMLNode* XMLNode::DeepClone(XMLDocument* target) const |
| 814 | { |
no test coverage detected