Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 10:02:48

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 /** \file
0009  * This is a convenience header for Catch2's benchmarking. It includes
0010  * **all** of Catch2 headers related to benchmarking.
0011  *
0012  * Generally the Catch2 users should use specific includes they need,
0013  * but this header can be used instead for ease-of-experimentation, or
0014  * just plain convenience, at the cost of (significantly) increased
0015  * compilation times.
0016  *
0017  * When a new header is added to either the `benchmark` folder, or to
0018  * the corresponding internal (detail) subfolder, it should be added here.
0019  */
0020 
0021 #ifndef CATCH_BENCHMARK_ALL_HPP_INCLUDED
0022 #define CATCH_BENCHMARK_ALL_HPP_INCLUDED
0023 
0024 #include <catch2/benchmark/catch_benchmark.hpp>
0025 #include <catch2/benchmark/catch_chronometer.hpp>
0026 #include <catch2/benchmark/catch_clock.hpp>
0027 #include <catch2/benchmark/catch_constructor.hpp>
0028 #include <catch2/benchmark/catch_environment.hpp>
0029 #include <catch2/benchmark/catch_estimate.hpp>
0030 #include <catch2/benchmark/catch_execution_plan.hpp>
0031 #include <catch2/benchmark/catch_optimizer.hpp>
0032 #include <catch2/benchmark/catch_outlier_classification.hpp>
0033 #include <catch2/benchmark/catch_sample_analysis.hpp>
0034 #include <catch2/benchmark/detail/catch_analyse.hpp>
0035 #include <catch2/benchmark/detail/catch_benchmark_function.hpp>
0036 #include <catch2/benchmark/detail/catch_benchmark_stats.hpp>
0037 #include <catch2/benchmark/detail/catch_benchmark_stats_fwd.hpp>
0038 #include <catch2/benchmark/detail/catch_complete_invoke.hpp>
0039 #include <catch2/benchmark/detail/catch_estimate_clock.hpp>
0040 #include <catch2/benchmark/detail/catch_measure.hpp>
0041 #include <catch2/benchmark/detail/catch_repeat.hpp>
0042 #include <catch2/benchmark/detail/catch_run_for_at_least.hpp>
0043 #include <catch2/benchmark/detail/catch_stats.hpp>
0044 #include <catch2/benchmark/detail/catch_timing.hpp>
0045 
0046 #endif // CATCH_BENCHMARK_ALL_HPP_INCLUDED