SeqAn3 3.4.0-rc.1
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
configuration_element_debug_mode.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2006-2024 Knut Reinert & Freie Universität Berlin
2// SPDX-FileCopyrightText: 2016-2024 Knut Reinert & MPI für molekulare Genetik
3// SPDX-License-Identifier: BSD-3-Clause
4
10#pragma once
11
13
14namespace seqan3::detail
15{
25template <typename wrapped_config_id_t>
27{
28public:
32 constexpr debug_mode() = default;
33 constexpr debug_mode(debug_mode const &) = default;
34 constexpr debug_mode(debug_mode &&) = default;
35 constexpr debug_mode & operator=(debug_mode const &) = default;
36 constexpr debug_mode & operator=(debug_mode &&) = default;
37 ~debug_mode() = default;
38
40
42 static constexpr typename wrapped_config_id_t::value_type id{wrapped_config_id_t::value};
43};
44} // namespace seqan3::detail
A global configuration type used to enabled debugging of algorithms.
Definition configuration_element_debug_mode.hpp:27
constexpr debug_mode & operator=(debug_mode const &)=default
Defaulted.
constexpr debug_mode()=default
Defaulted.
constexpr debug_mode(debug_mode &&)=default
Defaulted.
constexpr debug_mode & operator=(debug_mode &&)=default
Defaulted.
~debug_mode()=default
Defaulted.
constexpr debug_mode(debug_mode const &)=default
Defaulted.
The internal SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
Provides seqan3::pipeable_config_element.
Adds pipe interface to configuration elements.
Definition pipeable_config_element.hpp:29
Hide me