| 823 | } |
| 824 | |
| 825 | void XMLNode::SetValue( const char* str, bool staticMem ) |
| 826 | { |
| 827 | if ( staticMem ) { |
| 828 | _value.SetInternedStr( str ); |
| 829 | } |
| 830 | else { |
| 831 | _value.SetStr( str ); |
| 832 | } |
| 833 | } |
| 834 | |
| 835 | XMLNode* XMLNode::DeepClone(XMLDocument* target) const |
| 836 | { |
no test coverage detected