summaryrefslogtreecommitdiff
path: root/musicconn.h
blob: 7b0934d30e4ff8d72b1dd7c956e9a233cb1860b2 (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
27
#ifndef MUSICCONN_H
#define MUSICCONN_H

#include <QtCore/QObject>
#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