bpp-popgen3
3.0.0
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
Typedefs
Classes
Class List
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
y
~
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
w
~
Variables
a
b
c
d
f
g
h
i
l
m
n
p
s
t
u
w
y
Files
File List
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Friends
Pages
AbstractODataSet.cpp
Go to the documentation of this file.
1
// SPDX-FileCopyrightText: The Bio++ Development Group
2
//
3
// SPDX-License-Identifier: CECILL-2.1
4
5
#include "
AbstractODataSet.h
"
6
7
using namespace
bpp
;
8
9
// From STL
10
#include <fstream>
11
12
using namespace
std;
13
14
AbstractODataSet::~AbstractODataSet
() {}
15
16
void
AbstractODataSet::write
(
const
string
& path,
const
DataSet
& data_set,
bool
overwrite)
const
17
{
18
ofstream output(path.c_str(), overwrite ? (ios::out) : (ios::out | ios::app));
19
write(output, data_set);
20
output.close();
21
}
AbstractODataSet.h
bpp::AbstractODataSet::write
virtual void write(std::ostream &os, const DataSet &data_set) const =0
Write a DataSet on ostream.
bpp::AbstractODataSet::~AbstractODataSet
virtual ~AbstractODataSet()
Definition:
AbstractODataSet.cpp:14
bpp::DataSet
The DataSet class.
Definition:
DataSet.h:37
bpp
Bpp
PopGen
DataSet
Io
AbstractODataSet.cpp
Generated on Sun Jul 21 2024 08:40:35 for bpp-popgen3 by
1.9.1