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
com
CommunicationFactory.hpp
Go to the documentation of this file.
1
#pragma once
2
3
#include <
stdexcept
>
4
#include <
string
>
5
#include "
com/SharedPointer.hpp
"
6
7
namespace
precice
{
8
namespace
com {
9
class
CommunicationFactory
{
10
11
public
:
12
virtual
~CommunicationFactory
(){};
13
14
virtual
PtrCommunication
newCommunication
() = 0;
15
16
virtual
std::string
addressDirectory
()
17
{
18
throw
std::runtime_error
(
"Not available!"
);
19
}
16
virtual
std::string
addressDirectory
() {
…
}
20
};
9
class
CommunicationFactory
{
…
};
21
}
// namespace com
22
}
// namespace precice
std::string
precice::com::CommunicationFactory
Definition
CommunicationFactory.hpp:9
precice::com::CommunicationFactory::~CommunicationFactory
virtual ~CommunicationFactory()
Definition
CommunicationFactory.hpp:12
precice::com::CommunicationFactory::addressDirectory
virtual std::string addressDirectory()
Definition
CommunicationFactory.hpp:16
precice::com::CommunicationFactory::newCommunication
virtual PtrCommunication newCommunication()=0
SharedPointer.hpp
precice
Main namespace of the precice library.
Definition
Acceleration.cpp:5
std::runtime_error
std::shared_ptr< Communication >
stdexcept
string