2011-01-11 09:13:31 +00:00
|
|
|
/*
|
|
|
|
* Created by Phil on 07/01/2011.
|
|
|
|
* Copyright 2011 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)
|
|
|
|
*/
|
2012-09-17 01:42:29 -04:00
|
|
|
#ifndef TWOBLUECUBES_CATCH_INTERFACES_RUNNER_H_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_INTERFACES_RUNNER_H_INCLUDED
|
2011-01-11 09:13:31 +00:00
|
|
|
|
2012-05-15 08:02:36 +01:00
|
|
|
namespace Catch {
|
2013-07-03 19:14:59 +01:00
|
|
|
|
2012-05-15 08:02:36 +01:00
|
|
|
struct IRunner {
|
2012-08-13 07:46:10 +01:00
|
|
|
virtual ~IRunner();
|
2014-05-28 18:53:01 +01:00
|
|
|
virtual bool aborting() const = 0;
|
2011-01-11 09:13:31 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2012-09-17 01:42:29 -04:00
|
|
|
#endif // TWOBLUECUBES_CATCH_INTERFACES_RUNNER_H_INCLUDED
|