forked from catchorg/Catch2
		
	Swept: `-Wpadded` in some places (where it caused extra size, instead of just saying "hey, we padded struct at the end to align, just as standard says") `-Wweak-vtables` everywhere (Clang) `-Wexit-time-destructors` everywhere (Clang) `-Wmissing-noreturn` everywhere (Clang) The last three are enabled for Clang compilation going forward. Also enabled `-Wunreachable-code` for Clang and GCC
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 *  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_CONTEXT_H_INCLUDED
 | 
						|
#define TWOBLUECUBES_CATCH_CONTEXT_H_INCLUDED
 | 
						|
 | 
						|
#include <memory>
 | 
						|
 | 
						|
namespace Catch {
 | 
						|
 | 
						|
    struct IResultCapture;
 | 
						|
    struct IRunner;
 | 
						|
    struct IConfig;
 | 
						|
 | 
						|
    using IConfigPtr = std::shared_ptr<IConfig const>;
 | 
						|
 | 
						|
    struct IContext
 | 
						|
    {
 | 
						|
        virtual ~IContext();
 | 
						|
 | 
						|
        virtual IResultCapture* getResultCapture() = 0;
 | 
						|
        virtual IRunner* getRunner() = 0;
 | 
						|
        virtual IConfigPtr getConfig() const = 0;
 | 
						|
    };
 | 
						|
 | 
						|
    struct IMutableContext : IContext
 | 
						|
    {
 | 
						|
        virtual ~IMutableContext();
 | 
						|
        virtual void setResultCapture( IResultCapture* resultCapture ) = 0;
 | 
						|
        virtual void setRunner( IRunner* runner ) = 0;
 | 
						|
        virtual void setConfig( IConfigPtr const& config ) = 0;
 | 
						|
    };
 | 
						|
 | 
						|
    IContext& getCurrentContext();
 | 
						|
    IMutableContext& getCurrentMutableContext();
 | 
						|
    void cleanUpContext();
 | 
						|
}
 | 
						|
 | 
						|
#endif // TWOBLUECUBES_CATCH_CONTEXT_H_INCLUDED
 |