| 746 | } |
| 747 | |
| 748 | void XMLNode::SetValue( const char* str, bool staticMem ) |
| 749 | { |
| 750 | if ( staticMem ) { |
| 751 | _value.SetInternedStr( str ); |
| 752 | } |
| 753 | else { |
| 754 | _value.SetStr( str ); |
| 755 | } |
| 756 | } |
| 757 | |
| 758 | |
| 759 | void XMLNode::DeleteChildren() |
no test coverage detected