1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-12 16:16:35 -04:00
sdrangel/plugins/channel/bfm/bfmplugin.h

30 lines
619 B
C
Raw Normal View History

#ifndef INCLUDE_BFMPLUGIN_H
#define INCLUDE_BFMPLUGIN_H
#include <QObject>
#include "plugin/plugininterface.h"
class BFMPlugin : public QObject, PluginInterface {
Q_OBJECT
Q_INTERFACES(PluginInterface)
Q_PLUGIN_METADATA(IID "sdrangel.channel.bfm")
public:
explicit BFMPlugin(QObject* parent = 0);
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 createInstanceBFM();
};
#endif // INCLUDE_BFMPLUGIN_H