kopia lustrzana https://github.com/f4exb/sdrangel
				
				
				
			
		
			
	
	
		
			32 wiersze
		
	
	
		
			853 B
		
	
	
	
		
			C
		
	
	
		
		
			
		
	
	
			32 wiersze
		
	
	
		
			853 B
		
	
	
	
		
			C
		
	
	
|   | #ifndef INCLUDE_FT8PLUGIN_H
 | ||
|  | #define INCLUDE_FT8PLUGIN_H
 | ||
|  | 
 | ||
|  | #include <QObject>
 | ||
|  | #include "plugin/plugininterface.h"
 | ||
|  | 
 | ||
|  | class DeviceUISet; | ||
|  | class BasebandSampleSink; | ||
|  | 
 | ||
|  | class FT8Plugin : public QObject, PluginInterface { | ||
|  | 	Q_OBJECT | ||
|  | 	Q_INTERFACES(PluginInterface) | ||
|  | 	Q_PLUGIN_METADATA(IID "sdrangel.channel.ft8demod") | ||
|  | 
 | ||
|  | public: | ||
|  | 	explicit FT8Plugin(QObject* parent = nullptr); | ||
|  | 
 | ||
|  | 	const PluginDescriptor& getPluginDescriptor() const; | ||
|  | 	void initPlugin(PluginAPI* pluginAPI); | ||
|  | 
 | ||
|  | 	virtual void createRxChannel(DeviceAPI *deviceAPI, BasebandSampleSink **bs, ChannelAPI **cs) const; | ||
|  | 	virtual ChannelGUI* createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel) const; | ||
|  |     virtual ChannelWebAPIAdapter* createChannelWebAPIAdapter() const; | ||
|  | 
 | ||
|  | private: | ||
|  | 	static const PluginDescriptor m_pluginDescriptor; | ||
|  | 
 | ||
|  | 	PluginAPI* m_pluginAPI; | ||
|  | }; | ||
|  | 
 | ||
|  | #endif // INCLUDE_FT8PLUGIN_H
 |