aboutsummaryrefslogtreecommitdiff
path: root/network-handler/userclient.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'network-handler/userclient.hpp')
-rw-r--r--network-handler/userclient.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/network-handler/userclient.hpp b/network-handler/userclient.hpp
new file mode 100644
index 0000000..94d5ec0
--- /dev/null
+++ b/network-handler/userclient.hpp
@@ -0,0 +1,15 @@
+#pragma once
+
+#include <boost/asio/ip/tcp.hpp>
+
+#include "client.hpp"
+
+class UserClient : public Client
+{
+ virtual void handle_message(std::vector<uint8_t> message) override final;
+
+public:
+ UserClient(boost::asio::ip::tcp::socket&& socket);
+ virtual ~UserClient() = default;
+
+};