| 2225 | |
| 2226 | |
| 2227 | XMLText* XMLDocument::NewText( const char* str ) |
| 2228 | { |
| 2229 | XMLText* text = CreateUnlinkedNode<XMLText>( _textPool ); |
| 2230 | text->SetValue( str ); |
| 2231 | return text; |
| 2232 | } |
| 2233 | |
| 2234 | |
| 2235 | XMLDeclaration* XMLDocument::NewDeclaration( const char* str ) |
no test coverage detected