* Fix a typo in the dpkg changelog.
[deb_shairplay.git] / AirTV-Qt / mainapplication.h
index eccdfb22a05081e2694ff09f4d28923b8d5e29f1..3aa415112f4f2200b0a732b0666e730ebcdfa1c0 100644 (file)
@@ -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 <QAction>
 
 #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