File tree 2 files changed +4
-14
lines changed
iceoryx_posh/include/iceoryx_posh/popo
2 files changed +4
-14
lines changed Original file line number Diff line number Diff line change 17
17
#ifndef IOX_POSH_POPO_CLIENT_HPP
18
18
#define IOX_POSH_POPO_CLIENT_HPP
19
19
20
- #include " iceoryx_posh/capro/service_description.hpp"
21
20
#include " iceoryx_posh/internal/popo/client_impl.hpp"
22
- #include " iceoryx_posh/popo/client_options.hpp"
23
- #include " iceoryx_posh/popo/trigger_handle.hpp"
24
- #include " iceoryx_posh/runtime/posh_runtime.hpp"
25
21
26
22
namespace iox
27
23
{
28
24
namespace popo
29
25
{
30
26
template <typename Req, typename Res>
31
- class Client : public ClientImpl <Req, Res>
32
- {
33
- public:
34
- using ClientImpl<Req, Res>::ClientImpl;
35
- };
27
+ using Client = ClientImpl<Req, Res>;
28
+
36
29
} // namespace popo
37
30
} // namespace iox
38
31
Original file line number Diff line number Diff line change @@ -24,11 +24,8 @@ namespace iox
24
24
namespace popo
25
25
{
26
26
template <typename Req, typename Res>
27
- class Server : public ServerImpl <Req, Res>
28
- {
29
- public:
30
- using ServerImpl<Req, Res>::ServerImpl;
31
- };
27
+ using Server = ServerImpl<Req, Res>;
28
+
32
29
} // namespace popo
33
30
} // namespace iox
34
31
You can’t perform that action at this time.
0 commit comments