1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-03 14:34:57 -04:00

Multi device support: suppress reference to DSPEngine in PluginAPI

This commit is contained in:
f4exb
2016-05-11 16:03:03 +02:00
parent c556a16caa
commit e3d39c7d3f
4 changed files with 5 additions and 49 deletions
+1 -12
View File
@@ -36,16 +36,6 @@ public:
void addChannelMarker(ChannelMarker* channelMarker);
void removeChannelMarker(ChannelMarker* channelMarker);
// DSPEngine access
/* Direct access with DSP engine singleton
void setSampleSource(SampleSource* sampleSource);
void addSampleSink(SampleSink* sampleSink);
void removeSampleSink(SampleSink* sampleSink);
MessageQueue* getDSPEngineMessageQueue();
void addAudioSource(AudioFifo* audioFifo);
void removeAudioSource(AudioFifo* audioFifo);
*/
// Sample Source stuff
void registerSampleSource(const QString& sourceName, PluginInterface* plugin);
@@ -55,9 +45,8 @@ public:
protected:
PluginManager* m_pluginManager;
MainWindow* m_mainWindow;
DSPEngine* m_dspEngine;
PluginAPI(PluginManager* pluginManager, MainWindow* mainWindow, DSPEngine* dspEngine);
PluginAPI(PluginManager* pluginManager, MainWindow* mainWindow);
friend class PluginManager;
};