aboutsummaryrefslogtreecommitdiff
path: root/network-handler/nodeclient.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'network-handler/nodeclient.hpp')
-rw-r--r--network-handler/nodeclient.hpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/network-handler/nodeclient.hpp b/network-handler/nodeclient.hpp
deleted file mode 100644
index 9a3799a..0000000
--- a/network-handler/nodeclient.hpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#pragma once
-
-#include "client.hpp"
-
-#include <boost/asio/ip/tcp.hpp>
-
-#include <vector>
-
-class NodeClient
-{
- Client client;
- void handle_message(std::vector<uint8_t> message);
-
-public:
- NodeClient(boost::asio::ip::tcp::socket&& socket);
- virtual ~NodeClient() = default;
-
- void receive();
- void on_done(Client::OnDoneFT done);
-};