| 2261 | |
| 2262 | |
| 2263 | XMLDeclaration* XMLDocument::NewDeclaration( const char* str ) |
| 2264 | { |
| 2265 | XMLDeclaration* dec = CreateUnlinkedNode<XMLDeclaration>( _commentPool ); |
| 2266 | dec->SetValue( str ? str : "xml version=\"1.0\" encoding=\"UTF-8\"" ); |
| 2267 | return dec; |
| 2268 | } |
| 2269 | |
| 2270 | |
| 2271 | XMLUnknown* XMLDocument::NewUnknown( const char* str ) |
no test coverage detected