#ifndef MUSICCONN_H #define MUSICCONN_H #include #include "sapconnection.h" #include "sapsocket.h" class MusicConn : public QObject { Q_OBJECT public: MusicConn(SAPConnection *conn, QObject *parent = 0); ~MusicConn(); protected: private slots: void handleConnected(); void handleMessageReceived(); private: SAPConnection *_conn; SAPSocket *_socket; }; #endif // MUSICCONN_H