mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-02 06:04:39 -04:00
Moved plugin interface to sdrgui because of QWidget dependency
This commit is contained in:
@@ -1,25 +0,0 @@
|
||||
#include <plugin/plugininstancegui.h>
|
||||
#include "dsp/devicesamplesource.h"
|
||||
#include "dsp/devicesamplesink.h"
|
||||
#include "plugin/plugininterface.h"
|
||||
|
||||
|
||||
void PluginInterface::deleteSampleSourcePluginInstanceGUI(PluginInstanceGUI *ui)
|
||||
{
|
||||
ui->destroy();
|
||||
}
|
||||
|
||||
void PluginInterface::deleteSampleSourcePluginInstanceInput(DeviceSampleSource *source)
|
||||
{
|
||||
source->destroy();
|
||||
}
|
||||
|
||||
void PluginInterface::deleteSampleSinkPluginInstanceGUI(PluginInstanceGUI *ui)
|
||||
{
|
||||
ui->destroy();
|
||||
}
|
||||
|
||||
void PluginInterface::deleteSampleSinkPluginInstanceOutput(DeviceSampleSink *sink)
|
||||
{
|
||||
sink->destroy();
|
||||
}
|
||||
Reference in New Issue
Block a user