mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 00:11:14 -04:00
33 lines
906 B
C++
33 lines
906 B
C++
#ifndef INCLUDE_NFMPLUGIN_H
|
|
#define INCLUDE_NFMPLUGIN_H
|
|
|
|
#include <QObject>
|
|
#include "plugin/plugininterface.h"
|
|
|
|
class DeviceUISet;
|
|
class BasebandSampleSink;
|
|
|
|
class NFMPlugin : public QObject, PluginInterface {
|
|
Q_OBJECT
|
|
Q_INTERFACES(PluginInterface)
|
|
Q_PLUGIN_METADATA(IID "sdrangel.channel.nfmdemod")
|
|
|
|
public:
|
|
explicit NFMPlugin(QObject* parent = NULL);
|
|
|
|
const PluginDescriptor& getPluginDescriptor() const;
|
|
void initPlugin(PluginAPI* pluginAPI);
|
|
|
|
virtual PluginInstanceGUI* createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel) const;
|
|
virtual BasebandSampleSink* createRxChannelBS(DeviceAPI *deviceAPI) const;
|
|
virtual ChannelAPI* createRxChannelCS(DeviceAPI *deviceAPI) const;
|
|
virtual ChannelWebAPIAdapter* createChannelWebAPIAdapter() const;
|
|
|
|
private:
|
|
static const PluginDescriptor m_pluginDescriptor;
|
|
|
|
PluginAPI* m_pluginAPI;
|
|
};
|
|
|
|
#endif // INCLUDE_NFMPLUGIN_H
|