| 2237 | } |
| 2238 | |
| 2239 | XMLElement* XMLDocument::NewElement( const char* name ) |
| 2240 | { |
| 2241 | XMLElement* ele = CreateUnlinkedNode<XMLElement>( _elementPool ); |
| 2242 | ele->SetName( name ); |
| 2243 | return ele; |
| 2244 | } |
| 2245 | |
| 2246 | |
| 2247 | XMLComment* XMLDocument::NewComment( const char* str ) |
no test coverage detected