X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=AirTV-Qt%2Fmainapplication.h;h=3aa415112f4f2200b0a732b0666e730ebcdfa1c0;hb=c68fb30cb9e4c63228569a6a6749ec3325091dc9;hp=eccdfb22a05081e2694ff09f4d28923b8d5e29f1;hpb=2340bcd3ce772d058bbeddcadd7a8301f7b18747;p=deb_shairplay.git diff --git a/AirTV-Qt/mainapplication.h b/AirTV-Qt/mainapplication.h index eccdfb2..3aa4151 100644 --- a/AirTV-Qt/mainapplication.h +++ b/AirTV-Qt/mainapplication.h @@ -1,3 +1,17 @@ +/** + * Copyright (C) 2011-2012 Juho Vähä-Herttua + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + */ + #ifndef MAINAPPLICATION_H #define MAINAPPLICATION_H @@ -7,6 +21,8 @@ #include #include "raopservice.h" +#include "dnssdservice.h" +#include "audiocallbacks.h" class MainApplication : public QObject { @@ -15,11 +31,13 @@ public: explicit MainApplication(QObject *parent = 0); ~MainApplication(); - void start(); + bool start(); void stop(); private: RaopService *raopService; + DnssdService *dnssdService; + AudioCallbacks m_callbacks; QSystemTrayIcon *trayIcon; QMenu *trayIconMenu; @@ -30,7 +48,6 @@ signals: public slots: void aboutToQuit(); - }; #endif // MAINAPPLICATION_H