preCICE
v3.1.2
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
};
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