catch2/internal/catch_reporter_registry.hpp

70 lines
1.8 KiB
C++
Raw Normal View History

2010-11-10 00:24:00 +01:00
/*
2011-01-05 22:16:54 +01:00
* catch_reporter_registry.hpp
2010-11-10 00:24:00 +01:00
* Catch
*
* Created by Phil on 29/10/2010.
* Copyright 2010 Two Blue Cubes Ltd. All rights reserved.
*
* Distributed under the Boost Software License, Version 1.0. (See accompanying
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*
*/
#ifndef TWOBLUECUBES_CATCH_REPORTER_REGISTRY_HPP_INCLUDED
#define TWOBLUECUBES_CATCH_REPORTER_REGISTRY_HPP_INCLUDED
#include "catch_interfaces_reporter.h"
2010-11-10 00:24:00 +01:00
#include <map>
namespace Catch
{
class ReporterRegistry : public IReporterRegistry
2010-11-10 00:24:00 +01:00
{
public:
///////////////////////////////////////////////////////////////////////
~ReporterRegistry
()
2010-11-10 00:24:00 +01:00
{
2011-01-27 00:23:33 +01:00
deleteAllValues( m_factories );
2010-11-10 00:24:00 +01:00
}
///////////////////////////////////////////////////////////////////////
virtual IReporter* create
(
const std::string& name,
const IReporterConfig& config
)
const
2010-11-10 00:24:00 +01:00
{
FactoryMap::const_iterator it = m_factories.find( name );
if( it == m_factories.end() )
return NULL;
return it->second->create( config );
}
///////////////////////////////////////////////////////////////////////
void registerReporter
(
const std::string& name,
IReporterFactory* factory
)
2010-11-10 00:24:00 +01:00
{
m_factories.insert( std::make_pair( name, factory ) );
}
///////////////////////////////////////////////////////////////////////
const FactoryMap& getFactories
()
const
{
return m_factories;
}
private:
2010-11-10 00:24:00 +01:00
FactoryMap m_factories;
};
}
#endif // TWOBLUECUBES_CATCH_REPORTER_REGISTRY_HPP_INCLUDED