You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
amarok/amarok/src/mediadevice/daap/daapserver.h

41 lines
1.3 KiB

/***************************************************************************
* copyright : (C) 2006 Ian Monroe <ian@monroe.nu> *
**************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef AMAROK_DAAPSERVER_H
#define AMAROK_DAAPSERVER_H
#include <daapclient.h>
namespace DNSSD {
class PublicService;
}
class DaapServer : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
DaapServer(TQObject* tqparent, char* name);
~DaapServer();
public slots:
void readSql();
private:
KProcIO* m_server;
#ifdef DNSSD_SUPPORT
DNSSD::PublicService* m_service;
#endif
};
#endif /* AMAROK_DAAPSERVER_H */