| 2269 | } |
| 2270 | |
| 2271 | XMLElement* XMLDocument::NewElement( const char* name ) |
| 2272 | { |
| 2273 | XMLElement* ele = CreateUnlinkedNode<XMLElement>( _elementPool ); |
| 2274 | ele->SetName( name ); |
| 2275 | return ele; |
| 2276 | } |
| 2277 | |
| 2278 | |
| 2279 | XMLComment* XMLDocument::NewComment( const char* str ) |
no test coverage detected