SeqAn3  3.0.2
The Modern C++ library for sequence analysis.
pipeable_config_element.hpp
Go to the documentation of this file.
1 // -----------------------------------------------------------------------------------------------------
2 // Copyright (c) 2006-2020, Knut Reinert & Freie Universität Berlin
3 // Copyright (c) 2016-2020, Knut Reinert & MPI für molekulare Genetik
4 // This file may be used, modified and/or redistributed under the terms of the 3-clause BSD-License
5 // shipped with this file and also available at: https://github.com/seqan/seqan3/blob/master/LICENSE.md
6 // -----------------------------------------------------------------------------------------------------
7 
14 #pragma once
15 
16 #include <tuple>
17 #include <type_traits>
18 
21 
22 namespace seqan3
23 {
24 
29 template <typename derived_t>
30 class pipeable_config_element<derived_t>
31 {
32 private:
34  friend derived_t;
35 
39  constexpr pipeable_config_element() = default;
40  constexpr pipeable_config_element(pipeable_config_element const &) = default;
41  constexpr pipeable_config_element(pipeable_config_element &&) = default;
42  constexpr pipeable_config_element & operator=(pipeable_config_element const &) = default;
43  constexpr pipeable_config_element & operator=(pipeable_config_element &&) = default;
44  ~pipeable_config_element() = default;
45 };
47 
48 } // namespace seqan3
basic.hpp
Provides various type traits on generic types.
tuple
concept.hpp
Provides concepts for the configuration classes.
seqan3
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:29