| 9083 | class XmlReporter : public StreamingReporterBase { |
| 9084 | public: |
| 9085 | XmlReporter( ReporterConfig const& _config ) |
| 9086 | : StreamingReporterBase( _config ), |
| 9087 | m_sectionDepth( 0 ) |
| 9088 | { |
| 9089 | m_reporterPrefs.shouldRedirectStdOut = true; |
| 9090 | } |
| 9091 | |
| 9092 | virtual ~XmlReporter() CATCH_OVERRIDE; |
| 9093 |
nothing calls this directly
no outgoing calls
no test coverage detected