mirror of
https://github.com/catchorg/Catch2.git
synced 2025-08-01 12:55:40 +02:00
moved impl of hub out into hub_impl - only #included from runner.
This commit is contained in:
31
Test/catch_hub_impl.hpp
Normal file
31
Test/catch_hub_impl.hpp
Normal file
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* catch_hub_impl.hpp
|
||||
* Test
|
||||
*
|
||||
* Created by Phil on 31/12/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_HUB_IMPL_HPP_INCLUDED
|
||||
#define TWOBLUECUBES_CATCH_HUB_IMPL_HPP_INCLUDED
|
||||
|
||||
#include "catch_hub.h"
|
||||
#include "catch_reporter_registry.hpp"a
|
||||
|
||||
namespace Catch
|
||||
{
|
||||
inline Hub::Hub()
|
||||
: m_reporterRegistry( new ReporterRegistry )
|
||||
{
|
||||
}
|
||||
|
||||
inline IReporterRegistry& Hub::getReporterRegistry()
|
||||
{
|
||||
return *me().m_reporterRegistry.get();
|
||||
}
|
||||
}
|
||||
|
||||
#endif // TWOBLUECUBES_CATCH_HUB_IMPL_HPP_INCLUDED
|
Reference in New Issue
Block a user