| 2089 | } |
| 2090 | |
| 2091 | XMLElement* XMLDocument::NewElement( const char* name ) |
| 2092 | { |
| 2093 | XMLElement* ele = CreateUnlinkedNode<XMLElement>( _elementPool ); |
| 2094 | ele->SetName( name ); |
| 2095 | return ele; |
| 2096 | } |
| 2097 | |
| 2098 | |
| 2099 | XMLComment* XMLDocument::NewComment( const char* str ) |
no test coverage detected