| 2293 | |
| 2294 | |
| 2295 | XMLDeclaration* XMLDocument::NewDeclaration( const char* str ) |
| 2296 | { |
| 2297 | XMLDeclaration* dec = CreateUnlinkedNode<XMLDeclaration>( _commentPool ); |
| 2298 | dec->SetValue( str ? str : "xml version=\"1.0\" encoding=\"UTF-8\"" ); |
| 2299 | return dec; |
| 2300 | } |
| 2301 | |
| 2302 | |
| 2303 | XMLUnknown* XMLDocument::NewUnknown( const char* str ) |
no test coverage detected