| 2092 | |
| 2093 | |
| 2094 | XMLComment* XMLDocument::NewComment( const char* str ) |
| 2095 | { |
| 2096 | XMLComment* comment = CreateUnlinkedNode<XMLComment>( _commentPool ); |
| 2097 | comment->SetValue( str ); |
| 2098 | return comment; |
| 2099 | } |
| 2100 | |
| 2101 | |
| 2102 | XMLText* XMLDocument::NewText( const char* str ) |