| 587 | } |
| 588 | |
| 589 | void XMLNode::SetValue( const char* str, bool staticMem ) |
| 590 | { |
| 591 | if ( staticMem ) { |
| 592 | _value.SetInternedStr( str ); |
| 593 | } |
| 594 | else { |
| 595 | _value.SetStr( str ); |
| 596 | } |
| 597 | } |
| 598 | |
| 599 | |
| 600 | void XMLNode::DeleteChildren() |
no test coverage detected