Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-09-16 08:52:10

0001 
0002 //              Copyright Catch2 Authors
0003 // Distributed under the Boost Software License, Version 1.0.
0004 //   (See accompanying file LICENSE.txt or copy at
0005 //        https://www.boost.org/LICENSE_1_0.txt)
0006 
0007 // SPDX-License-Identifier: BSL-1.0
0008 // Adapted from donated nonius code.
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         } // namespace Detail
0024     } // namespace Benchmark
0025 } // namespace Catch
0026 
0027 #endif // CATCH_ANALYSE_HPP_INCLUDED