17 #ifndef IOX_POSH_POPO_CLIENT_HPP
18 #define IOX_POSH_POPO_CLIENT_HPP
20 #include "iceoryx_posh/internal/popo/client_impl.hpp"
29 template <
typename Req,
typename Res>
30 class Client :
public ClientImpl<Req, Res>
32 using Impl = ClientImpl<Req, Res>;
35 using ClientImpl<Req, Res>::ClientImpl;
39 Impl::m_trigger.reset();
The Client class for the request-response messaging pattern in iceoryx.
Definition: client.hpp:31