diff options
author | Claudius 'keldu' Holeksa <mail@keldu.de> | 2024-07-22 17:44:27 +0200 |
---|---|---|
committer | Claudius 'keldu' Holeksa <mail@keldu.de> | 2024-07-22 17:44:27 +0200 |
commit | 977ac8bce989285eaabc76c4ed8571ce5fd6793a (patch) | |
tree | 08df4e53e4f2ea947662cc6b1d207ed852292474 /modules/remote/c++/transfer.hpp | |
parent | fdf1b23129d73b27b28756e77da9b02215878721 (diff) |
wip
Diffstat (limited to 'modules/remote/c++/transfer.hpp')
-rw-r--r-- | modules/remote/c++/transfer.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/remote/c++/transfer.hpp b/modules/remote/c++/transfer.hpp index 2fdd0b9..ea61d56 100644 --- a/modules/remote/c++/transfer.hpp +++ b/modules/remote/c++/transfer.hpp @@ -1,6 +1,12 @@ #pragma once namespace saw { +template<typename Remote> +class i_data_server { +protected: + virtual ~i_data_server() = default; +}; + template<typename Schema, typename Encoding, typename Remote> class data_server; |