SeqAn3  3.2.0-rc.1
The Modern C++ library for sequence analysis.
semiregular_box.hpp
Go to the documentation of this file.
1 // -----------------------------------------------------------------------------------------------------
2 // Copyright (c) 2006-2022, Knut Reinert & Freie Universität Berlin
3 // Copyright (c) 2016-2022, 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 
13 #pragma once
14 
16 
17 // clang-format off
19  "This header is deprecated and will be removed in SeqAn-3.3.0; Please #include <seqan3/core/detail/copyable_wrapper.hpp> instead.")
20 // clang-format on
21 
22 namespace seqan3
23 {
31 template <typename t>
32 using semiregular_box SEQAN3_DEPRECATED_330 = detail::copyable_wrapper<t>;
33 
41 template <typename t>
42 using semiregular_box_t SEQAN3_DEPRECATED_330 = detail::copyable_wrapper_t<t>;
43 
44 } // namespace seqan3
Provides seqan3::detail::copyable_wrapper.
SEQAN3_DEPRECATED_HEADER("This header is deprecated and will be removed in SeqAn-3.3.0; Please #include <seqan3/core/detail/copyable_wrapper.hpp> instead.") namespace seqan3
Definition: semiregular_box.hpp:18
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:29
#define SEQAN3_DEPRECATED_330
Deprecation message for SeqAn 3.3.0 release.
Definition: platform.hpp:179