| 9848 | class XmlReporter : public StreamingReporterBase { |
| 9849 | public: |
| 9850 | XmlReporter( ReporterConfig const& _config ) |
| 9851 | : StreamingReporterBase( _config ), |
| 9852 | m_xml(_config.stream()), |
| 9853 | m_sectionDepth( 0 ) |
| 9854 | { |
| 9855 | m_reporterPrefs.shouldRedirectStdOut = true; |
| 9856 | } |
| 9857 | |
| 9858 | virtual ~XmlReporter() CATCH_OVERRIDE; |
| 9859 |
nothing calls this directly
no outgoing calls
no test coverage detected