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.hpp46
1 files changed, 0 insertions, 46 deletions
diff --git a/network-handler/userclient.hpp b/network-handler/userclient.hpp
deleted file mode 100644
index af810a7..0000000
--- a/network-handler/userclient.hpp
+++ /dev/null
@@ -1,46 +0,0 @@
-#pragma once
-
-#include <boost/asio/ip/tcp.hpp>
-
-#include "client.hpp"
-
-/*!
- * \file
- */
-
-/*!
- * \brief The UserClient class
- */
-class UserClient
-{
- /*!
- * \brief client
- */
- Client client;
-
- /*!
- * \brief handle_message
- * \param message
- */
- void handle_message(std::vector<uint8_t> message);
-
-public:
- /*!
- * \brief UserClient
- * \param socket
- */
- UserClient(boost::asio::ip::tcp::socket&& socket);
- virtual ~UserClient() = default;
-
- /*!
- * \brief receive
- */
- void receive();
-
- /*!
- * \brief on_done
- * \param done
- */
- void on_done(Client::OnDoneFT done);
-
-};