mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-31 13:00:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			578 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			578 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #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();
 | |
| }
 |