Added start of new Medialib view

This commit is contained in:
Tobias Rundstrom 2006-08-17 19:23:57 -04:00
parent 219327ca20
commit d114edf75f
12 changed files with 194 additions and 27 deletions

20
XMMSSocket.h Normal file
View file

@ -0,0 +1,20 @@
#ifndef __XMMSSOCKET_H__
#define __XMMSSOCKET_H__
#include <xmmsclient/xmmsclient++.h>
#include "XmmsQT4.h"
#include <QObject>
#include <QTimer>
class XMMSSocket
{
public:
XMMSSocket (const char *name = "promoe");
~XMMSSocket () { qDebug("destroy"); };
bool connect (const char *path);
Xmms::Client m_client;
};
#endif