| 2245 | |
| 2246 | |
| 2247 | XMLComment* XMLDocument::NewComment( const char* str ) |
| 2248 | { |
| 2249 | XMLComment* comment = CreateUnlinkedNode<XMLComment>( _commentPool ); |
| 2250 | comment->SetValue( str ); |
| 2251 | return comment; |
| 2252 | } |
| 2253 | |
| 2254 | |
| 2255 | XMLText* XMLDocument::NewText( const char* str ) |
no test coverage detected