Eliminate dynamic cast by promoting interface to parent class

This eliminates one use of RTTI in Catch.
This commit is contained in:
Eirik Byrkjeflot Anonsen
2016-04-04 18:51:33 +02:00
parent c984fc3ecd
commit 218d0bdcc7
2 changed files with 18 additions and 5 deletions

View File

@@ -226,6 +226,13 @@ namespace Catch
// Implementing class must also provide the following static method:
// static std::string getDescription();
virtual bool supportsChainedReporters() const {
return false;
}
virtual void addChainedReporter( Ptr<IStreamingReporter> const& reporter ) {
}
virtual ReporterPreferences getPreferences() const = 0;
virtual void noMatchingTestCases( std::string const& spec ) = 0;