summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/StreamStack/IncomingConnectionLayer.h')
-rw-r--r--Swiften/StreamStack/IncomingConnectionLayer.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/Swiften/StreamStack/IncomingConnectionLayer.h b/Swiften/StreamStack/IncomingConnectionLayer.h
deleted file mode 100644
index c1a9eab..0000000
--- a/Swiften/StreamStack/IncomingConnectionLayer.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#pragma once
-
-#include <boost/signal.hpp>
-
-#include "Swiften/StreamStack/LowLayer.h"
-#include "Swiften/Network/IncomingConnection.h"
-
-namespace Swift {
- class IncomingConnectionLayer : public LowLayer {
- public:
- IncomingConnectionLayer(IncomingConnection* connection) : connection_(connection) {
- connection_->onDataRead.connect(onDataRead);
- }
-
- void writeData(const ByteArray& data) {
- connection_->write(data);
- }
-
- private:
- IncomingConnection* connection_;
- };
-}