#ifndef INCLUDE_NFMPLUGIN_H #define INCLUDE_NFMPLUGIN_H #include #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 void createRxChannel(DeviceAPI *deviceAPI, BasebandSampleSink **bs, ChannelAPI **cs) const; virtual ChannelGUI* createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel) const; virtual ChannelWebAPIAdapter* createChannelWebAPIAdapter() const; private: static const PluginDescriptor m_pluginDescriptor; PluginAPI* m_pluginAPI; }; #endif // INCLUDE_NFMPLUGIN_H