| 648 | } |
| 649 | |
| 650 | void XMLNode::SetValue( const char* str, bool staticMem ) |
| 651 | { |
| 652 | if ( staticMem ) { |
| 653 | _value.SetInternedStr( str ); |
| 654 | } |
| 655 | else { |
| 656 | _value.SetStr( str ); |
| 657 | } |
| 658 | } |
| 659 | |
| 660 | |
| 661 | void XMLNode::DeleteChildren() |
no test coverage detected