summaryrefslogtreecommitdiff
path: root/modules/remote/c++/transfer.hpp
diff options
context:
space:
mode:
authorClaudius 'keldu' Holeksa <mail@keldu.de>2024-07-29 14:53:48 +0200
committerClaudius 'keldu' Holeksa <mail@keldu.de>2024-07-29 14:53:48 +0200
commit44f6a2ec37e35cf96419885be27afeab9ea84ec5 (patch)
treecbdd97513095ece2c1f23433b8e15196b147e7cc /modules/remote/c++/transfer.hpp
parent773fffb0c3596c93ae1522f6ef5eaaed4ad54e14 (diff)
wip
Diffstat (limited to 'modules/remote/c++/transfer.hpp')
-rw-r--r--modules/remote/c++/transfer.hpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/remote/c++/transfer.hpp b/modules/remote/c++/transfer.hpp
index ea61d56..32416de 100644
--- a/modules/remote/c++/transfer.hpp
+++ b/modules/remote/c++/transfer.hpp
@@ -1,10 +1,14 @@
#pragma once
+#include <map>
+
namespace saw {
template<typename Remote>
class i_data_server {
protected:
- virtual ~i_data_server() = default;
+ ~i_data_server() = default;
+public:
+ virtual std::pair<uint32_t,uint32_t> get_class_id() const = 0;
};
template<typename Schema, typename Encoding, typename Remote>