mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 07:21:14 -05:00
32 lines
697 B
C++
32 lines
697 B
C++
#ifndef INCLUDE_SSBPLUGIN_H
|
|
#define INCLUDE_SSBPLUGIN_H
|
|
|
|
#include <QObject>
|
|
#include "plugin/plugininterface.h"
|
|
|
|
class DeviceAPI;
|
|
|
|
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, DeviceAPI *deviceAPI);
|
|
|
|
private:
|
|
static const PluginDescriptor m_pluginDescriptor;
|
|
|
|
PluginAPI* m_pluginAPI;
|
|
|
|
private slots:
|
|
void createInstanceSSB(DeviceAPI *deviceAPI);
|
|
};
|
|
|
|
#endif // INCLUDE_SSBPLUGIN_H
|