Function ReporterConfig
Summary
#include <include/internal/catch_interfaces_reporter.h>
(1) explicit ReporterConfig(IConfigPtr const &_fullConfig)
(2) ReporterConfig(IConfigPtr const &_fullConfig, std::ostream &_stream)
Function overload
Synopsis
#include <include/internal/catch_interfaces_reporter.h>
explicit ReporterConfig(IConfigPtr const &_fullConfig)
Description
No description yet.
Source
Lines 13-14 in include/internal/catch_interfaces_reporter.cpp. Line 37 in include/internal/catch_interfaces_reporter.h.
ReporterConfig::ReporterConfig( IConfigPtr const& _fullConfig )
: m_stream( &_fullConfig->stream() ), m_fullConfig( _fullConfig ) {}
Synopsis
#include <include/internal/catch_interfaces_reporter.h>
ReporterConfig(IConfigPtr const &_fullConfig, std::ostream &_stream)
Description
No description yet.
Source
Lines 16-17 in include/internal/catch_interfaces_reporter.cpp. Line 39 in include/internal/catch_interfaces_reporter.h.
ReporterConfig::ReporterConfig( IConfigPtr const& _fullConfig, std::ostream& _stream )
: m_stream( &_stream ), m_fullConfig( _fullConfig ) {}