mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-30 01:03:30 +01:00
Regenerated header
This commit is contained in:
parent
9d8570ff80
commit
1840929c51
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Generated: 2012-09-15 17:50:31.695760
|
* Generated: 2012-09-20 08:36:21.042619
|
||||||
* ----------------------------------------------------------
|
* ----------------------------------------------------------
|
||||||
* This file has been merged from multiple headers. Please don't edit it directly
|
* This file has been merged from multiple headers. Please don't edit it directly
|
||||||
* Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved.
|
* Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved.
|
||||||
@ -2007,10 +2007,20 @@ namespace Catch
|
|||||||
fullConfig( _fullConfig )
|
fullConfig( _fullConfig )
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
ReporterConfig( const ReporterConfig& other )
|
||||||
|
: name( other.name ),
|
||||||
|
stream( other.stream ),
|
||||||
|
includeSuccessfulResults( other.includeSuccessfulResults ),
|
||||||
|
fullConfig( other.fullConfig )
|
||||||
|
{}
|
||||||
|
|
||||||
std::string name;
|
std::string name;
|
||||||
std::ostream& stream;
|
std::ostream& stream;
|
||||||
bool includeSuccessfulResults;
|
bool includeSuccessfulResults;
|
||||||
ConfigData fullConfig;
|
ConfigData fullConfig;
|
||||||
|
|
||||||
|
private:
|
||||||
|
void operator=(const ReporterConfig&);
|
||||||
};
|
};
|
||||||
|
|
||||||
class TestCaseInfo;
|
class TestCaseInfo;
|
||||||
|
Loading…
Reference in New Issue
Block a user