Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
a95c2ed5
Commit
a95c2ed5
authored
Feb 12, 2021
by
Mathieu Giraud
Browse files
core/windowExtractor.{h,cpp}: **out_unsegmented_detail may be a ostream
see
#4692
parent
22ad13cf
Changes
2
Hide whitespace changes
Inline
Side-by-side
algo/core/windowExtractor.cpp
View file @
a95c2ed5
...
...
@@ -171,7 +171,7 @@ void WindowExtractor::setUnsegmentedOutput(ostream *out) {
out_unsegmented
=
out
;
}
void
WindowExtractor
::
setUnsegmentedDetailOutput
(
o
f
stream
**
outs
,
bool
unsegmented_detail_full
)
{
void
WindowExtractor
::
setUnsegmentedDetailOutput
(
ostream
**
outs
,
bool
unsegmented_detail_full
)
{
out_unsegmented_detail
=
outs
;
this
->
unsegmented_detail_full
=
unsegmented_detail_full
;
}
...
...
algo/core/windowExtractor.h
View file @
a95c2ed5
...
...
@@ -31,7 +31,7 @@ class WindowExtractor {
ostream
*
out_segmented
;
ostream
*
out_unsegmented
;
o
f
stream
**
out_unsegmented_detail
;
ostream
**
out_unsegmented_detail
;
bool
unsegmented_detail_full
;
ostream
*
out_affects
;
...
...
@@ -124,7 +124,7 @@ class WindowExtractor {
* @param outs: The output streams
* @param unsegmented_detail_full: Whether we should output UNSEG_TOO_FEW_ZERO reads
*/
void
setUnsegmentedDetailOutput
(
o
f
stream
**
outs
,
bool
unsegmented_detail_full
=
false
);
void
setUnsegmentedDetailOutput
(
ostream
**
outs
,
bool
unsegmented_detail_full
=
false
);
/**
* Defines the output stream where the detailed affects will be output.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment