summaryrefslogtreecommitdiff
path: root/webproxyconn.h
diff options
context:
space:
mode:
Diffstat (limited to 'webproxyconn.h')
-rw-r--r--webproxyconn.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/webproxyconn.h b/webproxyconn.h
new file mode 100644
index 0000000..3a05ad3
--- /dev/null
+++ b/webproxyconn.h
@@ -0,0 +1,26 @@
+#ifndef WEBPROXYCONN_H
+#define WEBPROXYCONN_H
+
+#include <QtCore/QObject>
+#include "sapconnection.h"
+#include "sapsocket.h"
+
+class WebProxyConn : public QObject
+{
+ Q_OBJECT
+
+public:
+ WebProxyConn(SAPConnection *conn, QObject *parent = 0);
+
+private:
+
+private slots:
+ void handleConnected();
+ void handleMessageReceived();
+
+private:
+ SAPConnection *_conn;
+ SAPSocket *_socket;
+};
+
+#endif // WEBPROXYCONN_H