| 2193 | } |
| 2194 | |
| 2195 | XMLText* XMLDocument::NewText(const char* str) |
| 2196 | { |
| 2197 | XMLText* text = CreateUnlinkedNode<XMLText>(_textPool); |
| 2198 | text->SetValue(str); |
| 2199 | return text; |
| 2200 | } |
| 2201 | |
| 2202 | XMLDeclaration* XMLDocument::NewDeclaration(const char* str) |
| 2203 | { |
no test coverage detected