1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-06-02 23:12:26 -04:00

32 lines
690 B
C
Raw Normal View History

2015-05-12 02:53:35 +02:00
#ifndef INCLUDE_AMPLUGIN_H
#define INCLUDE_AMPLUGIN_H
#include <QObject>
#include "plugin/plugininterface.h"
class DeviceAPI;
2015-05-12 02:53:35 +02:00
class AMPlugin : public QObject, PluginInterface {
Q_OBJECT
Q_INTERFACES(PluginInterface)
Q_PLUGIN_METADATA(IID "de.maintech.sdrangelove.channel.am")
public:
explicit AMPlugin(QObject* parent = NULL);
const PluginDescriptor& getPluginDescriptor() const;
void initPlugin(PluginAPI* pluginAPI);
PluginGUI* createChannel(const QString& channelName, DeviceAPI *deviceAPI);
2015-05-12 02:53:35 +02:00
private:
static const PluginDescriptor m_pluginDescriptor;
PluginAPI* m_pluginAPI;
private slots:
void createInstanceAM(DeviceAPI *deviceAPI);
2015-05-12 02:53:35 +02:00
};
#endif // INCLUDE_AMPLUGIN_H