/*************************************************************************** * copyright : (C) 2006 Ian Monroe * **************************************************************************/ /*************************************************************************** * * * 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 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 */