mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-04 07:51:14 -05:00
32 lines
850 B
C++
32 lines
850 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 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
|