summaryrefslogtreecommitdiff
path: root/modules/remote/c++
diff options
context:
space:
mode:
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_);