diff options
author | Claudius 'keldu' Holeksa <mail@keldu.de> | 2024-07-15 15:29:12 +0200 |
---|---|---|
committer | Claudius 'keldu' Holeksa <mail@keldu.de> | 2024-07-15 15:29:12 +0200 |
commit | 816760c8480e8e76c7f4021a845161eb697e215c (patch) | |
tree | f18ef0578dab81e1f00798e9c897210236340b90 /modules/codec/c++/transfer.hpp | |
parent | 5d92d62caa68473e67022debe45bf8038c6c3b60 (diff) |
Moving remote definitions from codec to remote module
Diffstat (limited to 'modules/codec/c++/transfer.hpp')
-rw-r--r-- | modules/codec/c++/transfer.hpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/modules/codec/c++/transfer.hpp b/modules/codec/c++/transfer.hpp deleted file mode 100644 index 2fdd0b9..0000000 --- a/modules/codec/c++/transfer.hpp +++ /dev/null @@ -1,21 +0,0 @@ -#pragma once - -namespace saw { -template<typename Schema, typename Encoding, typename Remote> -class data_server; - -template<typename Schema, typename Encoding, typename Remote> -class data_client; - -namespace impl { -template<typename Encoding, typename Storage, typename T> -struct data_server_redux { - using type = std::tuple<>; -}; - -template<typename Encoding, typename Storage, typename... Schema> -struct data_server_redux<Encoding, Storage, tmpl_group<Schema...>> { - using type = std::tuple<std::unordered_map<uint64_t, data<Schema, Encoding, Storage>>...>; -}; -} -} |