#ifndef WEBPROXYCONN_H #define WEBPROXYCONN_H #include #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