2015-06-21 06:46:47 -04:00
|
|
|
#ifndef INCLUDE_CHANALYZERPLUGIN_H
|
|
|
|
#define INCLUDE_CHANALYZERPLUGIN_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include "plugin/plugininterface.h"
|
|
|
|
|
2017-10-30 19:07:55 -04:00
|
|
|
class DeviceUISet;
|
2017-11-08 08:23:49 -05:00
|
|
|
class BasebandSampleSink;
|
2017-12-17 17:15:42 -05:00
|
|
|
class ChannelSinkAPI;
|
2016-05-15 21:21:21 -04:00
|
|
|
|
2015-06-21 06:46:47 -04:00
|
|
|
class ChannelAnalyzerPlugin : public QObject, PluginInterface {
|
|
|
|
Q_OBJECT
|
|
|
|
Q_INTERFACES(PluginInterface)
|
|
|
|
Q_PLUGIN_METADATA(IID "org.f4exb.sdrangelove.channel.chanalyzer")
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit ChannelAnalyzerPlugin(QObject* parent = NULL);
|
|
|
|
|
|
|
|
const PluginDescriptor& getPluginDescriptor() const;
|
|
|
|
void initPlugin(PluginAPI* pluginAPI);
|
|
|
|
|
2017-12-22 23:56:40 -05:00
|
|
|
virtual PluginInstanceGUI* createRxChannelGUI(const QString& channelName, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel);
|
2017-12-23 03:54:42 -05:00
|
|
|
virtual BasebandSampleSink* createRxChannelBS(DeviceSourceAPI *deviceAPI);
|
|
|
|
virtual ChannelSinkAPI* createRxChannelCS(DeviceSourceAPI *deviceAPI);
|
2015-06-21 06:46:47 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
static const PluginDescriptor m_pluginDescriptor;
|
|
|
|
|
|
|
|
PluginAPI* m_pluginAPI;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_CHANALYZERPLUGIN_H
|