| 2105 | |
| 2106 | |
| 2107 | XMLText* XMLDocument::NewText( const char* str ) |
| 2108 | { |
| 2109 | XMLText* text = CreateUnlinkedNode<XMLText>( _textPool ); |
| 2110 | text->SetValue( str ); |
| 2111 | return text; |
| 2112 | } |
| 2113 | |
| 2114 | |
| 2115 | XMLDeclaration* XMLDocument::NewDeclaration( const char* str ) |
no test coverage detected