preCICE
v3.2.0
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
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
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
m
n
p
t
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
src
com
MPISinglePortsCommunicationFactory.hpp
Go to the documentation of this file.
1
#ifndef PRECICE_NO_MPI
2
3
#pragma once
4
5
#include "
CommunicationFactory.hpp
"
6
#include "
com/SharedPointer.hpp
"
7
8
#include <
string
>
9
10
namespace
precice::com
{
11
class
MPISinglePortsCommunicationFactory
:
public
CommunicationFactory
{
12
public
:
13
explicit
MPISinglePortsCommunicationFactory
(
std::string
addressDirectory
=
"."
);
14
15
PtrCommunication
newCommunication
()
override
;
16
17
std::string
addressDirectory
()
override
;
18
19
private
:
20
std::string
_addressDirectory
;
21
};
11
class
MPISinglePortsCommunicationFactory
:
public
CommunicationFactory
{
…
};
22
}
// namespace precice::com
23
24
#endif
// not PRECICE_NO_MPI
CommunicationFactory.hpp
std::string
precice::com::CommunicationFactory
Definition
CommunicationFactory.hpp:8
precice::com::MPISinglePortsCommunicationFactory
Definition
MPISinglePortsCommunicationFactory.hpp:11
precice::com::MPISinglePortsCommunicationFactory::addressDirectory
std::string addressDirectory() override
Definition
MPISinglePortsCommunicationFactory.cpp:24
precice::com::MPISinglePortsCommunicationFactory::newCommunication
PtrCommunication newCommunication() override
Definition
MPISinglePortsCommunicationFactory.cpp:19
precice::com::MPISinglePortsCommunicationFactory::MPISinglePortsCommunicationFactory
MPISinglePortsCommunicationFactory(std::string addressDirectory=".")
Definition
MPISinglePortsCommunicationFactory.cpp:11
precice::com::MPISinglePortsCommunicationFactory::_addressDirectory
std::string _addressDirectory
Definition
MPISinglePortsCommunicationFactory.hpp:20
SharedPointer.hpp
precice::com
contains the data communication abstraction layer.
Definition
Communication.cpp:12
std::shared_ptr< Communication >
string