| 2097 | |
| 2098 | |
| 2099 | XMLComment* XMLDocument::NewComment( const char* str ) |
| 2100 | { |
| 2101 | XMLComment* comment = CreateUnlinkedNode<XMLComment>( _commentPool ); |
| 2102 | comment->SetValue( str ); |
| 2103 | return comment; |
| 2104 | } |
| 2105 | |
| 2106 | |
| 2107 | XMLText* XMLDocument::NewText( const char* str ) |