1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-12 08:06:34 -04:00
sdrangel/plugins/channel/demodssb/ssbplugin.h

30 lines
637 B
C
Raw Normal View History

2014-05-21 13:31:14 -04:00
#ifndef INCLUDE_SSBPLUGIN_H
#define INCLUDE_SSBPLUGIN_H
#include <QObject>
#include "plugin/plugininterface.h"
class SSBPlugin : public QObject, PluginInterface {
Q_OBJECT
Q_INTERFACES(PluginInterface)
Q_PLUGIN_METADATA(IID "de.maintech.sdrangelove.channel.ssb")
public:
explicit SSBPlugin(QObject* parent = NULL);
const PluginDescriptor& getPluginDescriptor() const;
void initPlugin(PluginAPI* pluginAPI);
PluginGUI* createChannel(const QString& channelName);
private:
static const PluginDescriptor m_pluginDescriptor;
PluginAPI* m_pluginAPI;
private slots:
void createInstanceSSB();
};
#endif // INCLUDE_SSBPLUGIN_H