File indexing completed on 2025-09-16 08:52:10
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef CATCH_ANALYSE_HPP_INCLUDED
0011 #define CATCH_ANALYSE_HPP_INCLUDED
0012
0013 #include <catch2/benchmark/catch_clock.hpp>
0014 #include <catch2/benchmark/catch_sample_analysis.hpp>
0015
0016
0017 namespace Catch {
0018 class IConfig;
0019
0020 namespace Benchmark {
0021 namespace Detail {
0022 SampleAnalysis analyse(const IConfig &cfg, FDuration* first, FDuration* last);
0023 }
0024 }
0025 }
0026
0027 #endif