diff options
author | Claudius 'keldu' Holeksa <mail@keldu.de> | 2024-07-15 17:20:08 +0200 |
---|---|---|
committer | Claudius 'keldu' Holeksa <mail@keldu.de> | 2024-07-15 17:20:08 +0200 |
commit | 3908c79fa4696bf5d1b7fa717e19a9192f4b29c3 (patch) | |
tree | 960932dc8036867f8d7912e2ec143ee9aec31d9f /modules/remote | |
parent | c147ec6aae28d80ff2397cf6acf4ea9c91ee3e4d (diff) |
Started working on multi client
Diffstat (limited to 'modules/remote')
-rw-r--r-- | modules/remote/c++/transfer_multi.hpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/remote/c++/transfer_multi.hpp b/modules/remote/c++/transfer_multi.hpp new file mode 100644 index 0000000..f7d7a62 --- /dev/null +++ b/modules/remote/c++/transfer_multi.hpp @@ -0,0 +1,14 @@ +#pragma once + +#include "transfer_loopback.hpp" + +namespace saw { + +template<typename Schema, typename Encoding, typename... Backends> +class multi_data_client { +private: + data_client<Schema, Encoding, rmt::Loopback> loopback; + + std::tuple<> foo; +}; +} |