preCICE
v3.1.2
Loading...
Searching...
No Matches
src
com
Request.cpp
Go to the documentation of this file.
1
#include <
memory
>
2
3
#include "
com/Request.hpp
"
4
5
namespace
precice::com
{
6
7
void
Request::wait
(
std::vector<PtrRequest>
&requests)
8
{
9
for
(
const
auto
&request : requests) {
10
request->wait();
11
}
12
}
13
14
Request::~Request
() =
default
;
15
}
// namespace precice::com
Request.hpp
precice::com::Request::~Request
virtual ~Request()
precice::com::Request::wait
virtual void wait()=0
memory
precice::com
contains the data communication abstraction layer.
Definition
Communication.cpp:12
std::vector