| 2217 | |
| 2218 | |
| 2219 | XMLComment* XMLDocument::NewComment( const char* str ) |
| 2220 | { |
| 2221 | XMLComment* comment = CreateUnlinkedNode<XMLComment>( _commentPool ); |
| 2222 | comment->SetValue( str ); |
| 2223 | return comment; |
| 2224 | } |
| 2225 | |
| 2226 | |
| 2227 | XMLText* XMLDocument::NewText( const char* str ) |