| 1676 | |
| 1677 | |
| 1678 | XMLText* XMLDocument::NewText( const char* str ) |
| 1679 | { |
| 1680 | XMLText* text = new (_textPool.Alloc()) XMLText( this ); |
| 1681 | text->_memPool = &_textPool; |
| 1682 | text->SetValue( str ); |
| 1683 | return text; |
| 1684 | } |
| 1685 | |
| 1686 | |
| 1687 | XMLDeclaration* XMLDocument::NewDeclaration( const char* str ) |
no test coverage detected