1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-29 13:34:13 -04:00

Multi device support: removed GLSpectrum dependency in plugin manager

This commit is contained in:
f4exb
2016-05-16 10:40:18 +02:00
parent 2893d7bb06
commit 9013e057fa
3 changed files with 3 additions and 6 deletions
+1 -3
View File
@@ -14,7 +14,6 @@ class MainWindow;
class Message;
class MessageQueue;
class DSPDeviceEngine;
class GLSpectrum;
class DeviceAPI;
class SDRANGEL_API PluginManager : public QObject {
@@ -36,7 +35,7 @@ public:
typedef QList<Plugin> Plugins;
explicit PluginManager(MainWindow* mainWindow, uint deviceTabIndex, DSPDeviceEngine* dspDeviceEngine, GLSpectrum *spectrum, QObject* parent = NULL);
explicit PluginManager(MainWindow* mainWindow, uint deviceTabIndex, DSPDeviceEngine* dspDeviceEngine, QObject* parent = NULL);
~PluginManager();
void loadPlugins();
@@ -130,7 +129,6 @@ private:
MainWindow* m_mainWindow;
uint m_deviceTabIndex;
DSPDeviceEngine* m_dspDeviceEngine;
GLSpectrum* m_spectrum;
Plugins m_plugins;
ChannelRegistrations m_channelRegistrations;