| 11126 | } |
| 11127 | |
| 11128 | XmlWriter::ScopedElement::~ScopedElement() { |
| 11129 | if( m_writer ) |
| 11130 | m_writer->endElement(); |
| 11131 | } |
| 11132 | |
| 11133 | XmlWriter::ScopedElement& XmlWriter::ScopedElement::writeText( std::string const& text, bool indent ) { |
| 11134 | m_writer->writeText( text, indent ); |
nothing calls this directly
no outgoing calls
no test coverage detected