2014-05-18 15:52:39 +00:00
|
|
|
#ifndef INCLUDE_NFMPLUGIN_H
|
|
|
|
#define INCLUDE_NFMPLUGIN_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include "plugin/plugininterface.h"
|
|
|
|
|
2017-10-31 07:24:05 +00:00
|
|
|
class DeviceUISet;
|
2017-11-08 13:23:49 +00:00
|
|
|
class BasebandSampleSink;
|
2016-05-16 08:05:09 +00:00
|
|
|
|
2014-05-18 15:52:39 +00:00
|
|
|
class NFMPlugin : public QObject, PluginInterface {
|
|
|
|
Q_OBJECT
|
|
|
|
Q_INTERFACES(PluginInterface)
|
|
|
|
Q_PLUGIN_METADATA(IID "de.maintech.sdrangelove.channel.nfm")
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit NFMPlugin(QObject* parent = NULL);
|
|
|
|
|
|
|
|
const PluginDescriptor& getPluginDescriptor() const;
|
|
|
|
void initPlugin(PluginAPI* pluginAPI);
|
|
|
|
|
2017-12-23 04:56:40 +00:00
|
|
|
virtual PluginInstanceGUI* createRxChannelGUI(const QString& channelName, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel);
|
2017-12-23 08:54:42 +00:00
|
|
|
virtual BasebandSampleSink* createRxChannelBS(DeviceSourceAPI *deviceAPI);
|
|
|
|
virtual ChannelSinkAPI* createRxChannelCS(DeviceSourceAPI *deviceAPI);
|
2014-05-18 15:52:39 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
static const PluginDescriptor m_pluginDescriptor;
|
|
|
|
|
|
|
|
PluginAPI* m_pluginAPI;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_NFMPLUGIN_H
|