sdrangel/plugins/channelrx/demodlora/loraplugin.h

32 lines
732 B
C
Raw Normal View History

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