aboutsummaryrefslogtreecommitdiff
path: root/node/nextnode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'node/nextnode.cpp')
-rw-r--r--node/nextnode.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/node/nextnode.cpp b/node/nextnode.cpp
new file mode 100644
index 0000000..3045462
--- /dev/null
+++ b/node/nextnode.cpp
@@ -0,0 +1,7 @@
+#include "nextnode.hpp"
+
+using namespace boost::asio::ip;
+
+NextNode::NextNode(tcp::socket&& socket)
+: Client(std::move(socket))
+{}