Lines Matching refs:IReporterFactory
2527 struct IReporterFactory;
2539 …virtual void registerReporter( std::string const& name, Ptr<IReporterFactory> const& factory ) = 0;
2540 virtual void registerListener( Ptr<IReporterFactory> const& factory ) = 0;
5267 struct IReporterFactory : IShared { struct
5268 virtual ~IReporterFactory();
5274 typedef std::map<std::string, Ptr<IReporterFactory> > FactoryMap;
5275 typedef std::vector<Ptr<IReporterFactory> > Listeners;
6599 void registerReporter( std::string const& name, Ptr<IReporterFactory> const& factory ) { in registerReporter()
6602 void registerListener( Ptr<IReporterFactory> const& factory ) { in registerListener()
6704 …virtual void registerReporter( std::string const& name, Ptr<IReporterFactory> const& factory ) CAT… in registerReporter()
6707 virtual void registerListener( Ptr<IReporterFactory> const& factory ) CATCH_OVERRIDE { in registerListener()
8765 class ReporterFactory : public IReporterFactory {
8785 class ReporterFactory : public SharedImpl<IReporterFactory> {
8817 class ListenerFactory : public SharedImpl<IReporterFactory> {
10211 IReporterFactory::~IReporterFactory() {} in ~IReporterFactory()