| 2108 | |
| 2109 | |
| 2110 | XMLDeclaration* XMLDocument::NewDeclaration(const char* str) |
| 2111 | { |
| 2112 | XMLDeclaration* dec = CreateUnlinkedNode<XMLDeclaration>(_commentPool); |
| 2113 | dec->SetValue(str ? str : "xml version=\"1.0\" encoding=\"UTF-8\""); |
| 2114 | return dec; |
| 2115 | } |
| 2116 | |
| 2117 | |
| 2118 | XMLUnknown* XMLDocument::NewUnknown(const char* str) |
no test coverage detected