// Copyright Catch2 Authors // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE.txt or copy at // https://www.boost.org/LICENSE_1_0.txt) // SPDX-License-Identifier: BSL-1.0 #ifndef CATCH_REPORTER_REGISTRY_HPP_INCLUDED #define CATCH_REPORTER_REGISTRY_HPP_INCLUDED #include #include #include #include #include namespace Catch { class IEventListener; using IEventListenerPtr = Detail::unique_ptr; class IReporterFactory; using IReporterFactoryPtr = Detail::unique_ptr; struct ReporterConfig; class EventListenerFactory; class ReporterRegistry { struct ReporterRegistryImpl; Detail::unique_ptr m_impl; public: ReporterRegistry(); ~ReporterRegistry(); // = default; IEventListenerPtr create( std::string const& name, ReporterConfig&& config ) const; void registerReporter( std::string const& name, IReporterFactoryPtr factory ); void registerListener( Detail::unique_ptr factory ); std::map const& getFactories() const; std::vector> const& getListeners() const; }; } // end namespace Catch #endif // CATCH_REPORTER_REGISTRY_HPP_INCLUDED