| 2277 | |
| 2278 | |
| 2279 | XMLComment* XMLDocument::NewComment( const char* str ) |
| 2280 | { |
| 2281 | XMLComment* comment = CreateUnlinkedNode<XMLComment>( _commentPool ); |
| 2282 | comment->SetValue( str ); |
| 2283 | return comment; |
| 2284 | } |
| 2285 | |
| 2286 | |
| 2287 | XMLText* XMLDocument::NewText( const char* str ) |
no test coverage detected