SeqAn3
3.4.0-rc.4
The Modern C++ library for sequence analysis.
Toggle main menu visibility
Welcome
Setup
Quick Setup (using CMake)
Tutorial
First steps with SeqAn
Parsing command line arguments with Sharg
C++ Concepts
Alphabets in SeqAn
Ranges
Minimisers
Sequence File Input and Output
Pairwise Alignment
Indexing and searching with SeqAn
SAM Input and Output in SeqAn
Implementing your own read mapper with SeqAn
How-To
Porting from SeqAn2
How to write an argument parser with subcommands
How to serialise SeqAn data structures
How to write a view
How to write your own alphabet
Cookbook
About
Stability and long-term promises
Citing
Customisation
Changelog
Copyright
Code of Conduct
Contributing
API Reference
API Reference (details)
Namespace List
Namespace List
Class List
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
~
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
~
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
Typedefs
a
b
c
d
e
f
h
i
m
o
p
q
r
s
t
u
v
w
Related Symbols
a
c
d
g
o
s
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Concepts
Loading...
Searching...
No Matches
stream_buffer_exposer.hpp
Go to the documentation of this file.
1
// SPDX-FileCopyrightText: 2006-2025 Knut Reinert & Freie Universität Berlin
2
// SPDX-FileCopyrightText: 2016-2025 Knut Reinert & MPI für molekulare Genetik
3
// SPDX-License-Identifier: BSD-3-Clause
4
11
#pragma once
12
13
#include <
iosfwd
>
14
15
#include <
seqan3/core/platform.hpp
>
16
17
namespace
seqan3::detail
18
{
19
30
template
<
typename
char
_t,
typename
traits_t = std::
char
_traits<
char
_t>>
31
struct
stream_buffer_exposer :
public
std::basic_streambuf
<char_t, traits_t>
32
{
34
using
base_t =
std::basic_streambuf<char_t, traits_t>
;
35
37
// Expose protected members:
38
using
base_t::eback
;
39
using
base_t::egptr
;
40
using
base_t::gbump
;
41
using
base_t::gptr
;
42
using
base_t::setg
;
43
using
base_t::underflow
;
44
45
using
base_t::epptr
;
46
using
base_t::overflow
;
47
using
base_t::pbase
;
48
using
base_t::pbump
;
49
using
base_t::pptr
;
51
};
52
}
// namespace seqan3::detail
std::basic_streambuf
std::basic_streambuf::gbump
T gbump(T... args)
std::basic_streambuf::eback
T eback(T... args)
iosfwd
std::basic_streambuf::overflow
T overflow(T... args)
std::basic_streambuf::pbump
T pbump(T... args)
platform.hpp
Provides platform and dependency checks.
std::basic_streambuf::epptr
T epptr(T... args)
std::basic_streambuf::setg
T setg(T... args)
std::basic_streambuf::underflow
T underflow(T... args)
Hide me
Version:
seqan3
io
stream
detail
stream_buffer_exposer.hpp
Generated on Sun Mar 9 2025 01:26:13 for SeqAn3 by
1.9.8