summaryrefslogtreecommitdiff
path: root/modules/remote/c++/transfer.hpp
diff options
context:
space:
mode:
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>