| 2253 | |
| 2254 | |
| 2255 | XMLText* XMLDocument::NewText( const char* str ) |
| 2256 | { |
| 2257 | XMLText* text = CreateUnlinkedNode<XMLText>( _textPool ); |
| 2258 | text->SetValue( str ); |
| 2259 | return text; |
| 2260 | } |
| 2261 | |
| 2262 | |
| 2263 | XMLDeclaration* XMLDocument::NewDeclaration( const char* str ) |
no test coverage detected