| 12644 | } |
| 12645 | |
| 12646 | XmlWriter::ScopedElement::~ScopedElement() { |
| 12647 | if( m_writer ) |
| 12648 | m_writer->endElement(); |
| 12649 | } |
| 12650 | |
| 12651 | XmlWriter::ScopedElement& XmlWriter::ScopedElement::writeText( std::string const& text, bool indent ) { |
| 12652 | m_writer->writeText( text, indent ); |
nothing calls this directly
no outgoing calls
no test coverage detected