summaryrefslogtreecommitdiff
path: root/musicconn.h
blob: a38bf943bad353b9416ef834c9e0c4a66c7f55b0 (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 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);

protected:

private slots:
	void handleConnected();
	void handleMessageReceived();

private:
	SAPConnection *_conn;
	SAPSocket *_socket;
};

#endif // MUSICCONN_H