preCICE v3.2.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Request.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <vector>
5
6namespace precice::com {
7class Request {
8
9public:
10 static void wait(std::vector<PtrRequest> &requests);
11
12 virtual ~Request();
13
14 virtual bool test() = 0;
15
16 virtual void wait() = 0;
17};
18} // namespace precice::com
virtual bool test()=0
virtual void wait()=0
contains the data communication abstraction layer.