2014-05-21 13:31:14 -04:00
|
|
|
#ifndef INCLUDE_SSBPLUGIN_H
|
|
|
|
#define INCLUDE_SSBPLUGIN_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include "plugin/plugininterface.h"
|
|
|
|
|
2017-10-31 03:24:05 -04:00
|
|
|
class DeviceUISet;
|
2017-11-08 08:23:49 -05:00
|
|
|
class BasebandSampleSink;
|
2016-05-16 04:05:09 -04:00
|
|
|
|
2014-05-21 13:31:14 -04:00
|
|
|
class SSBPlugin : public QObject, PluginInterface {
|
|
|
|
Q_OBJECT
|
|
|
|
Q_INTERFACES(PluginInterface)
|
2018-05-30 16:25:57 -04:00
|
|
|
Q_PLUGIN_METADATA(IID "sdrangel.channel.ssbdemod")
|
2014-05-21 13:31:14 -04:00
|
|
|
|
|
|
|
public:
|
|
|
|
explicit SSBPlugin(QObject* parent = NULL);
|
|
|
|
|
|
|
|
const PluginDescriptor& getPluginDescriptor() const;
|
|
|
|
void initPlugin(PluginAPI* pluginAPI);
|
|
|
|
|
2020-10-01 16:52:27 -04:00
|
|
|
virtual void createRxChannel(DeviceAPI *deviceAPI, BasebandSampleSink **bs, ChannelAPI **cs) const;
|
2020-10-04 00:16:15 -04:00
|
|
|
virtual ChannelGUI* createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel) const;
|
2019-08-04 18:10:56 -04:00
|
|
|
virtual ChannelWebAPIAdapter* createChannelWebAPIAdapter() const;
|
2014-05-21 13:31:14 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
static const PluginDescriptor m_pluginDescriptor;
|
|
|
|
|
|
|
|
PluginAPI* m_pluginAPI;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_SSBPLUGIN_H
|