| 2178 | |
| 2179 | |
| 2180 | XMLText* XMLDocument::NewText( const char* str ) |
| 2181 | { |
| 2182 | XMLText* text = CreateUnlinkedNode<XMLText>( _textPool ); |
| 2183 | text->SetValue( str ); |
| 2184 | return text; |
| 2185 | } |
| 2186 | |
| 2187 | |
| 2188 | XMLDeclaration* XMLDocument::NewDeclaration( const char* str ) |
no test coverage detected