mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-30 20:40:20 -04: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(); }
 | |
| }
 |