preCICE v3.1.1
Loading...
Searching...
No Matches
Request.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <vector>
5
6namespace precice {
7namespace com {
8class Request {
9
10public:
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
virtual bool test()=0
virtual void wait()=0
Main namespace of the precice library.