| 2186 | } |
| 2187 | |
| 2188 | XMLComment* XMLDocument::NewComment(const char* str) |
| 2189 | { |
| 2190 | XMLComment* comment = CreateUnlinkedNode<XMLComment>(_commentPool); |
| 2191 | comment->SetValue(str); |
| 2192 | return comment; |
| 2193 | } |
| 2194 | |
| 2195 | XMLText* XMLDocument::NewText(const char* str) |
| 2196 | { |