| 11071 | namespace Catch { |
| 11072 | |
| 11073 | ReporterConfig::ReporterConfig( IConfigPtr const& _fullConfig ) |
| 11074 | : m_stream( &_fullConfig->stream() ), m_fullConfig( _fullConfig ) {} |
| 11075 | |
| 11076 | ReporterConfig::ReporterConfig( IConfigPtr const& _fullConfig, std::ostream& _stream ) |
| 11077 | : m_stream( &_stream ), m_fullConfig( _fullConfig ) {} |