| 600 | } |
| 601 | |
| 602 | void XMLNode::SetValue( const char* str, bool staticMem ) { |
| 603 | if ( staticMem ) { |
| 604 | _value.SetInternedStr( str ); |
| 605 | } else { |
| 606 | _value.SetStr( str ); |
| 607 | } |
| 608 | } |
| 609 | |
| 610 | |
| 611 | void XMLNode::DeleteChildren() { |
no test coverage detected