2014-05-18 11:52:39 -04:00
|
|
|
#ifndef INCLUDE_TCPSRCPLUGIN_H
|
|
|
|
#define INCLUDE_TCPSRCPLUGIN_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-18 11:52:39 -04:00
|
|
|
class TCPSrcPlugin : public QObject, PluginInterface {
|
|
|
|
Q_OBJECT
|
|
|
|
Q_INTERFACES(PluginInterface)
|
2015-11-18 00:05:13 -05:00
|
|
|
Q_PLUGIN_METADATA(IID "sdrangel.demod.tcpsrc")
|
2014-05-18 11:52:39 -04:00
|
|
|
|
|
|
|
public:
|
|
|
|
explicit TCPSrcPlugin(QObject* parent = NULL);
|
|
|
|
|
|
|
|
const PluginDescriptor& getPluginDescriptor() const;
|
|
|
|
void initPlugin(PluginAPI* pluginAPI);
|
|
|
|
|
2017-11-08 19:03:05 -05:00
|
|
|
PluginInstanceGUI* createRxChannelGUI(const QString& channelName, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel);
|
2017-11-08 08:23:49 -05:00
|
|
|
BasebandSampleSink* createRxChannel(const QString& channelName, DeviceSourceAPI *deviceAPI);
|
2014-05-18 11:52:39 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
static const PluginDescriptor m_pluginDescriptor;
|
|
|
|
|
|
|
|
PluginAPI* m_pluginAPI;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_TCPSRCPLUGIN_H
|