| 2170 | |
| 2171 | |
| 2172 | XMLComment* XMLDocument::NewComment( const char* str ) |
| 2173 | { |
| 2174 | XMLComment* comment = CreateUnlinkedNode<XMLComment>( _commentPool ); |
| 2175 | comment->SetValue( str ); |
| 2176 | return comment; |
| 2177 | } |
| 2178 | |
| 2179 | |
| 2180 | XMLText* XMLDocument::NewText( const char* str ) |