summaryrefslogtreecommitdiff
path: root/modules/remote/c++/remote_loopback.hpp
diff options
context:
space:
mode:
authorClaudius 'keldu' Holeksa <mail@keldu.de>2024-08-12 13:42:48 +0200
committerClaudius 'keldu' Holeksa <mail@keldu.de>2024-08-12 13:42:48 +0200
commite13f6a5e91ffeac86c32ab3a9048b810b1931061 (patch)
tree1eec0e8f5ca6edfd99581f5b175371a21c8f652b /modules/remote/c++/remote_loopback.hpp
parentb9a4cf706cf0145c814ef5987dad21ebc4172ac6 (diff)
wip
Diffstat (limited to 'modules/remote/c++/remote_loopback.hpp')
-rw-r--r--modules/remote/c++/remote_loopback.hpp18
1 files changed, 2 insertions, 16 deletions
diff --git a/modules/remote/c++/remote_loopback.hpp b/modules/remote/c++/remote_loopback.hpp
index 17f1bfe..fde410d 100644
--- a/modules/remote/c++/remote_loopback.hpp
+++ b/modules/remote/c++/remote_loopback.hpp
@@ -4,7 +4,7 @@
#include <forstio/codec/interface.hpp>
-#include "remote.hpp"
+#include "remote_loopback_base.hpp"
#include "transfer_loopback.hpp"
namespace saw {
@@ -53,19 +53,6 @@ class rpc_client<Iface, Encoding, Storage, rmt::Loopback> {
*/
};
-template<>
-class remote_address<rmt::Loopback> {
-private:
- data<schema::UInt64> addr_id_;
-public:
- remote_address(data<schema::UInt64> addr_id__):
- addr_id_{addr_id__}
- {}
-
- const data<schema::UInt64>& get_address_id() const {
- return addr_id_;
- }
-};
template<typename Iface, typename Encode, typename Storage>
class rpc_server<Iface, Encode, Storage, rmt::Loopback> {
@@ -81,8 +68,7 @@ public:
{}
// error_or<id<>>
- conveyor<
- > call
+ // conveyor<> call
};
}