preCICE
v3.1.2
Loading...
Searching...
No Matches
src
com
Request.hpp
Go to the documentation of this file.
1
#pragma once
2
3
#include <
vector
>
4
#include "
com/SharedPointer.hpp
"
5
6
namespace
precice
{
7
namespace
com {
8
class
Request
{
9
10
public
:
11
static
void
wait
(
std::vector<PtrRequest>
&requests);
12
13
virtual
~Request
();
14
15
virtual
bool
test
() = 0;
16
17
virtual
void
wait
() = 0;
18
};
19
}
// namespace com
20
}
// namespace precice
precice::com::Request
Definition
Request.hpp:8
precice::com::Request::test
virtual bool test()=0
precice::com::Request::~Request
virtual ~Request()
precice::com::Request::wait
virtual void wait()=0
SharedPointer.hpp
precice
Main namespace of the precice library.
Definition
Acceleration.cpp:5
vector