kopia lustrzana https://github.com/f4exb/sdrangel
				
				
				
			
		
			
				
	
	
		
			32 wiersze
		
	
	
		
			839 B
		
	
	
	
		
			C++
		
	
	
			
		
		
	
	
			32 wiersze
		
	
	
		
			839 B
		
	
	
	
		
			C++
		
	
	
#ifndef INCLUDE_TCPSRCPLUGIN_H
 | 
						|
#define INCLUDE_TCPSRCPLUGIN_H
 | 
						|
 | 
						|
#include <QObject>
 | 
						|
#include "plugin/plugininterface.h"
 | 
						|
 | 
						|
class DeviceUISet;
 | 
						|
class BasebandSampleSink;
 | 
						|
 | 
						|
class TCPSrcPlugin : public QObject, PluginInterface {
 | 
						|
	Q_OBJECT
 | 
						|
	Q_INTERFACES(PluginInterface)
 | 
						|
	Q_PLUGIN_METADATA(IID "sdrangel.demod.tcpsrc")
 | 
						|
 | 
						|
public:
 | 
						|
	explicit TCPSrcPlugin(QObject* parent = NULL);
 | 
						|
 | 
						|
	const PluginDescriptor& getPluginDescriptor() const;
 | 
						|
	void initPlugin(PluginAPI* pluginAPI);
 | 
						|
 | 
						|
	virtual PluginInstanceGUI* createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel);
 | 
						|
	virtual BasebandSampleSink* createRxChannelBS(DeviceSourceAPI *deviceAPI);
 | 
						|
	virtual ChannelSinkAPI* createRxChannelCS(DeviceSourceAPI *deviceAPI);
 | 
						|
 | 
						|
private:
 | 
						|
	static const PluginDescriptor m_pluginDescriptor;
 | 
						|
 | 
						|
	PluginAPI* m_pluginAPI;
 | 
						|
};
 | 
						|
 | 
						|
#endif // INCLUDE_TCPSRCPLUGIN_H
 |