summaryrefslogtreecommitdiff
path: root/modules/remote/c++
diff options
context:
space:
mode:
authorClaudius 'keldu' Holeksa <mail@keldu.de>2024-07-19 19:15:32 +0200
committerClaudius 'keldu' Holeksa <mail@keldu.de>2024-07-19 19:15:32 +0200
commit5f946d3dba74a7d3bc12bc75c4e7e7ed58805d58 (patch)
tree9f0a23255734edaa60fdd254848972884b65edab /modules/remote/c++
parentd37e2449e0c5f44b4d10ecd6c99841a9b3c4b582 (diff)
wip
Diffstat (limited to 'modules/remote/c++')
-rw-r--r--modules/remote/c++/transfer_loopback.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/remote/c++/transfer_loopback.hpp b/modules/remote/c++/transfer_loopback.hpp
index 6c81c9c..f148281 100644
--- a/modules/remote/c++/transfer_loopback.hpp
+++ b/modules/remote/c++/transfer_loopback.hpp
@@ -32,6 +32,15 @@ public:
return void_t{};
}
+ /**
+ *
+ */
+ template<typename Sch>
+ error_or<void> allocate(id<Sch> store_id){
+
+ return make_error<err::not_implemented>();
+ }
+
template<typename Sch>
error_or<data<Sch, Encoding, storage::Default>> receive(id<Sch> store_id){
auto& vals = std::get<std::unordered_map<uint64_t, data<Sch,Encoding>>>(values_);