Selaa lähdekoodia

We don't need a server in ComponentManager any more.

Tobias Hieta 9 vuotta sitten
vanhempi
commit
ebc3b194cf

+ 0 - 3
src/ComponentManager.h

@@ -8,7 +8,6 @@
 #include <QWebChannel>
 
 #include "utils/Utils.h"
-#include "server/HTTPServer.h"
 
 class ComponentBase : public QObject
 {
@@ -37,8 +36,6 @@ private:
   ComponentManager();
   void registerComponent(ComponentBase* comp);
 
-  HttpServer* m_server;
-
   QMap<QString, ComponentBase*> m_components;
   QQmlPropertyMap m_qmlProperyMap;
 };

+ 1 - 0
src/player/PlayerComponent.h

@@ -7,6 +7,7 @@
 #include <QSet>
 #include <QQuickWindow>
 #include <QTimer>
+#include <QTextStream>
 
 #include "ComponentManager.h"
 

+ 1 - 0
src/remote/RemoteComponent.h

@@ -13,6 +13,7 @@
 
 #include "ComponentManager.h"
 #include "GDMManager.h"
+#include "server/httpserver.h"
 #include "qhttpresponse.h"
 #include "RemoteSubscriber.h"
 

+ 0 - 1
src/shared/Paths.cpp

@@ -3,7 +3,6 @@
 //
 
 #include "settings/SettingsSection.h"
-#include "settings/SettingsComponent.h"
 #include "Paths.h"
 
 #include <QDir>