mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-03 13:11:20 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			517 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			517 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "dsp/devicesamplesource.h"
 | 
						|
#include "dsp/devicesamplesink.h"
 | 
						|
#include "dsp/devicesamplemimo.h"
 | 
						|
#include "plugin/plugininterface.h"
 | 
						|
 | 
						|
 | 
						|
void PluginInterface::deleteSampleSourcePluginInstanceInput(DeviceSampleSource *source)
 | 
						|
{
 | 
						|
    if (source) { source->destroy(); }
 | 
						|
}
 | 
						|
 | 
						|
void PluginInterface::deleteSampleSinkPluginInstanceOutput(DeviceSampleSink *sink)
 | 
						|
{
 | 
						|
    if (sink) { sink->destroy(); }
 | 
						|
}
 | 
						|
 | 
						|
void PluginInterface::deleteSampleMIMOPluginInstanceMIMO(DeviceSampleMIMO *mimo)
 | 
						|
{
 | 
						|
    if (mimo) { mimo->destroy(); }
 | 
						|
}
 |