| 
									
										
										
										
											2015-01-11 00:12:58 +00:00
										 |  |  | #ifndef INCLUDE_LoRaPLUGIN_H
 | 
					
						
							|  |  |  | #define INCLUDE_LoRaPLUGIN_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QObject>
 | 
					
						
							|  |  |  | #include "plugin/plugininterface.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-11 01:17:55 +02:00
										 |  |  | class DeviceSourceAPI; | 
					
						
							| 
									
										
										
										
											2016-05-16 10:05:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-11 00:12:58 +00:00
										 |  |  | 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); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-03 19:55:00 +02:00
										 |  |  | 	PluginInstanceUI* createRxChannel(const QString& channelName, DeviceSourceAPI *deviceAPI); | 
					
						
							| 
									
										
										
										
											2015-01-11 00:12:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 	static const PluginDescriptor m_pluginDescriptor; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	PluginAPI* m_pluginAPI; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private slots: | 
					
						
							| 
									
										
										
										
											2016-10-11 01:17:55 +02:00
										 |  |  | 	void createInstanceLoRa(DeviceSourceAPI *deviceAPI); | 
					
						
							| 
									
										
										
										
											2015-01-11 00:12:58 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif // INCLUDE_LoRaPLUGIN_H
 |