Ported all process code from K3Process/K3ProcIO to KProcess based classes (see Proces...
[amarok.git] / src / mediadevice / daap / daapserver.h
blobda9f01452eba22540248076832ddf0e897c12a79
1 /***************************************************************************
2 * copyright : (C) 2006 Ian Monroe <ian@monroe.nu> *
3 **************************************************************************/
5 /***************************************************************************
6 * *
7 * This program is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by *
9 * the Free Software Foundation; either version 2 of the License, or *
10 * (at your option) any later version. *
11 * *
12 ***************************************************************************/
13 #ifndef AMAROK_DAAPSERVER_H
14 #define AMAROK_DAAPSERVER_H
16 #include <daapclient.h>
18 class ProcIO;
20 namespace DNSSD {
21 class PublicService;
24 class DaapServer : public QObject
26 Q_OBJECT
28 public:
29 DaapServer(QObject* parent, char* name);
30 ~DaapServer();
31 public slots:
32 void readSql();
33 private:
34 ProcIO* m_server;
35 #ifdef DNSSD_SUPPORT
36 DNSSD::PublicService* m_service;
37 #endif
40 #endif /* AMAROK_DAAPSERVER_H */