summaryrefslogtreecommitdiff
path: root/webproxyconn.h
blob: 3a05ad3da0f1782a57be0b524c2174f8548ac3b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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