| 15406 | } |
| 15407 | |
| 15408 | void XmlWriter::applyFormatting(XmlFormatting fmt) { |
| 15409 | m_needsNewline = shouldNewline(fmt); |
| 15410 | } |
| 15411 | |
| 15412 | void XmlWriter::writeDeclaration() { |
| 15413 | m_os << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"; |
nothing calls this directly
no test coverage detected