| 853 | } |
| 854 | |
| 855 | void XMLNode::SetValue( const char* str, bool staticMem ) |
| 856 | { |
| 857 | if ( staticMem ) { |
| 858 | _value.SetInternedStr( str ); |
| 859 | } |
| 860 | else { |
| 861 | _value.SetStr( str ); |
| 862 | } |
| 863 | } |
| 864 | |
| 865 | XMLNode* XMLNode::DeepClone(XMLDocument* target) const |
| 866 | { |
no test coverage detected