| 2100 | |
| 2101 | |
| 2102 | XMLText* XMLDocument::NewText(const char* str) |
| 2103 | { |
| 2104 | XMLText* text = CreateUnlinkedNode<XMLText>(_textPool); |
| 2105 | text->SetValue(str); |
| 2106 | return text; |
| 2107 | } |
| 2108 | |
| 2109 | |
| 2110 | XMLDeclaration* XMLDocument::NewDeclaration(const char* str) |
no test coverage detected