| 1667 | |
| 1668 | |
| 1669 | XMLComment* XMLDocument::NewComment( const char* str ) |
| 1670 | { |
| 1671 | XMLComment* comment = new (_commentPool.Alloc()) XMLComment( this ); |
| 1672 | comment->_memPool = &_commentPool; |
| 1673 | comment->SetValue( str ); |
| 1674 | return comment; |
| 1675 | } |
| 1676 | |
| 1677 | |
| 1678 | XMLText* XMLDocument::NewText( const char* str ) |
no test coverage detected