mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-03 21:20:31 -05:00 
			
		
		
		
	
		
			
	
	
		
			30 lines
		
	
	
		
			644 B
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			30 lines
		
	
	
		
			644 B
		
	
	
	
		
			C
		
	
	
	
	
	
| 
								 | 
							
								#ifndef INCLUDE_LoRaPLUGIN_H
							 | 
						||
| 
								 | 
							
								#define INCLUDE_LoRaPLUGIN_H
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#include <QObject>
							 | 
						||
| 
								 | 
							
								#include "plugin/plugininterface.h"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class LoRaPlugin : public QObject, PluginInterface {
							 | 
						||
| 
								 | 
							
									Q_OBJECT
							 | 
						||
| 
								 | 
							
									Q_INTERFACES(PluginInterface)
							 | 
						||
| 
								 | 
							
									Q_PLUGIN_METADATA(IID "de.maintech.sdrangelove.channel.lora")
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								public:
							 | 
						||
| 
								 | 
							
									explicit LoRaPlugin(QObject* parent = NULL);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									const PluginDescriptor& getPluginDescriptor() const;
							 | 
						||
| 
								 | 
							
									void initPlugin(PluginAPI* pluginAPI);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									PluginGUI* createChannel(const QString& channelName);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								private:
							 | 
						||
| 
								 | 
							
									static const PluginDescriptor m_pluginDescriptor;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									PluginAPI* m_pluginAPI;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								private slots:
							 | 
						||
| 
								 | 
							
									void createInstanceLoRa();
							 | 
						||
| 
								 | 
							
								};
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#endif // INCLUDE_LoRaPLUGIN_H
							 |