mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 07:21:14 -05:00
51 lines
1.1 KiB
C++
51 lines
1.1 KiB
C++
#include "../../channelrx/demodssb/ssbplugin.h"
|
|
|
|
#include <QtPlugin>
|
|
#include "plugin/pluginapi.h"
|
|
#include "device/deviceapi.h"
|
|
|
|
#include "../../channelrx/demodssb/ssbdemodgui.h"
|
|
|
|
const PluginDescriptor SSBPlugin::m_pluginDescriptor = {
|
|
QString("SSB Demodulator"),
|
|
QString("2.1.1"),
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
|
QString("https://github.com/f4exb/sdrangel"),
|
|
true,
|
|
QString("https://github.com/f4exb/sdrangel")
|
|
};
|
|
|
|
SSBPlugin::SSBPlugin(QObject* parent) :
|
|
QObject(parent)
|
|
{
|
|
}
|
|
|
|
const PluginDescriptor& SSBPlugin::getPluginDescriptor() const
|
|
{
|
|
return m_pluginDescriptor;
|
|
}
|
|
|
|
void SSBPlugin::initPlugin(PluginAPI* pluginAPI)
|
|
{
|
|
m_pluginAPI = pluginAPI;
|
|
|
|
// register demodulator
|
|
m_pluginAPI->registerChannel(SSBDemodGUI::m_channelID, this);
|
|
}
|
|
|
|
PluginGUI* SSBPlugin::createChannel(const QString& channelName, DeviceAPI *deviceAPI)
|
|
{
|
|
if(channelName == SSBDemodGUI::m_channelID)
|
|
{
|
|
SSBDemodGUI* gui = SSBDemodGUI::create(m_pluginAPI, deviceAPI);
|
|
return gui;
|
|
} else {
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
void SSBPlugin::createInstanceSSB(DeviceAPI *deviceAPI)
|
|
{
|
|
SSBDemodGUI* gui = SSBDemodGUI::create(m_pluginAPI, deviceAPI);
|
|
}
|