1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-07-23 08:02:26 -04:00
sdrangel/plugins/channelrx/chanalyzer/chanalyzerplugin.h
2016-10-13 23:42:08 +02:00

32 lines
779 B
C++

#ifndef INCLUDE_CHANALYZERPLUGIN_H
#define INCLUDE_CHANALYZERPLUGIN_H
#include <QObject>
#include "plugin/plugininterface.h"
class DeviceSourceAPI;
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);
PluginGUI* createRxChannel(const QString& channelName, DeviceSourceAPI *deviceAPI);
private:
static const PluginDescriptor m_pluginDescriptor;
PluginAPI* m_pluginAPI;
private slots:
void createInstanceChannelAnalyzer(DeviceSourceAPI *deviceAPI);
};
#endif // INCLUDE_CHANALYZERPLUGIN_H