There is already a section in Catch2 documentation about how to create custom reporters. The problem is that this seems to work only for the non-single header version of Catch2.
Using single header version of Catch2, the two base classes for reporters ( Catch::StreamingReporterBase and Catch::CumulativeReporterBase) are not accessible.
They are not accessible because they are in a part of the header that is not included by the precompiler (by the way, I don't understand how default reporters work as they too are in not-included segments of the header).
Does someone know how to create custom reporters with single-header version of Catch2?
EDIT : I am using version 2 of Catch. The reporter base definitions are in a block disabled by a #ifdef OBJC block.