preCICE
v3.1.2
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Variables
_
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
Typedefs
b
d
e
g
l
m
p
r
s
t
u
v
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
~
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
~
Variables
_
a
b
c
d
e
f
g
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Typedefs
a
b
c
d
e
f
i
k
m
n
o
p
r
s
t
v
w
Enumerations
Enumerator
c
d
e
i
l
m
n
o
r
s
u
v
w
Related Symbols
Files
File List
File Members
All
_
a
b
c
d
e
f
g
i
j
m
n
o
p
r
s
t
v
Functions
a
b
c
g
m
p
r
s
t
v
Variables
Typedefs
Macros
b
d
f
m
n
p
t
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
src
io
ExportCSV.hpp
Go to the documentation of this file.
1
#pragma once
2
3
#include <
string
>
4
#include "
io/Export.hpp
"
5
#include "
logging/Logger.hpp
"
6
7
namespace
precice
{
8
namespace
io {
9
10
class
ExportCSV
:
public
Export
{
11
public
:
12
virtual
void
doExport
(
13
const
std::string
&
name
,
14
const
std::string
&location,
15
const
mesh::Mesh
& mesh);
16
17
private
:
18
mutable
logging::Logger
_log
{
"io::ExportCSV"
};
19
};
10
class
ExportCSV
:
public
Export
{
…
};
20
21
}
// namespace io
22
}
// namespace precice
Export.hpp
Logger.hpp
name
std::string name
Definition
SocketCommunication.cpp:718
std::string
precice::io::ExportCSV
Definition
ExportCSV.hpp:10
precice::io::ExportCSV::doExport
virtual void doExport(const std::string &name, const std::string &location, const mesh::Mesh &mesh)
Does export. Has to be implemented in subclass.
Definition
ExportCSV.cpp:38
precice::io::ExportCSV::_log
logging::Logger _log
Definition
ExportCSV.hpp:18
precice::io::Export
Abstract base class of all classes exporting container data structures.
Definition
Export.hpp:15
precice::logging::Logger
This class provides a lightweight logger.
Definition
Logger.hpp:16
precice::mesh::Mesh
Container and creator for meshes.
Definition
Mesh.hpp:39
precice
Main namespace of the precice library.
Definition
Acceleration.cpp:5
string