| 2285 | |
| 2286 | |
| 2287 | XMLText* XMLDocument::NewText( const char* str ) |
| 2288 | { |
| 2289 | XMLText* text = CreateUnlinkedNode<XMLText>( _textPool ); |
| 2290 | text->SetValue( str ); |
| 2291 | return text; |
| 2292 | } |
| 2293 | |
| 2294 | |
| 2295 | XMLDeclaration* XMLDocument::NewDeclaration( const char* str ) |
no test coverage detected