kopia lustrzana https://github.com/f4exb/sdrangel
				
				
				
			
		
			
				
	
	
		
			31 wiersze
		
	
	
		
			857 B
		
	
	
	
		
			C++
		
	
	
			
		
		
	
	
			31 wiersze
		
	
	
		
			857 B
		
	
	
	
		
			C++
		
	
	
| #ifndef INCLUDE_CHANALYZERPLUGIN_H
 | |
| #define INCLUDE_CHANALYZERPLUGIN_H
 | |
| 
 | |
| #include <QObject>
 | |
| #include "plugin/plugininterface.h"
 | |
| 
 | |
| class DeviceUISet;
 | |
| class BasebandSampleSink;
 | |
| 
 | |
| class ChannelAnalyzerPlugin : public QObject, PluginInterface {
 | |
| 	Q_OBJECT
 | |
| 	Q_INTERFACES(PluginInterface)
 | |
| 	Q_PLUGIN_METADATA(IID "org.f4exb.sdrangelove.channel.chanalyzer")
 | |
| 
 | |
| public:
 | |
| 	explicit ChannelAnalyzerPlugin(QObject* parent = NULL);
 | |
| 
 | |
| 	const PluginDescriptor& getPluginDescriptor() const;
 | |
| 	void initPlugin(PluginAPI* pluginAPI);
 | |
| 
 | |
| 	PluginInstanceGUI* createRxChannelGUI(const QString& channelName, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel);
 | |
|     BasebandSampleSink* createRxChannel(const QString& channelName, DeviceSourceAPI *deviceAPI);
 | |
| 
 | |
| private:
 | |
| 	static const PluginDescriptor m_pluginDescriptor;
 | |
| 
 | |
| 	PluginAPI* m_pluginAPI;
 | |
| };
 | |
| 
 | |
| #endif // INCLUDE_CHANALYZERPLUGIN_H
 |