1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-10-04 10:46:58 -04:00
sdrangel/plugins/channelrx/demodwfm/wfmplugin.h

32 lines
922 B
C
Raw Normal View History

2014-11-16 17:39:50 -05:00
#ifndef INCLUDE_WFMPLUGIN_H
#define INCLUDE_WFMPLUGIN_H
#include <QObject>
#include "plugin/plugininterface.h"
class DeviceUISet;
class BasebandSampleSink;
2014-11-16 17:39:50 -05:00
class WFMPlugin : public QObject, PluginInterface {
Q_OBJECT
Q_INTERFACES(PluginInterface)
Q_PLUGIN_METADATA(IID "de.maintech.sdrangelove.channel.wfm")
public:
explicit WFMPlugin(QObject* parent = NULL);
const PluginDescriptor& getPluginDescriptor() const;
void initPlugin(PluginAPI* pluginAPI);
PluginInstanceGUI* createRxChannelGUI(const QString& channelName, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel);
BasebandSampleSink* createRxChannel(const QString& channelName, DeviceSourceAPI *deviceAPI);
2017-12-17 17:15:42 -05:00
void createRxChannel(ChannelSinkAPI **channelSinkAPI, const QString& channelName, DeviceSourceAPI *deviceAPI);
2014-11-16 17:39:50 -05:00
private:
static const PluginDescriptor m_pluginDescriptor;
PluginAPI* m_pluginAPI;
};
#endif // INCLUDE_WFMPLUGIN_H