2015-05-11 20:53:35 -04:00
|
|
|
#ifndef INCLUDE_AMPLUGIN_H
|
|
|
|
#define INCLUDE_AMPLUGIN_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include "plugin/plugininterface.h"
|
|
|
|
|
2016-05-15 21:21:21 -04:00
|
|
|
class DeviceAPI;
|
|
|
|
|
2015-05-11 20:53:35 -04: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);
|
|
|
|
|
2016-05-15 21:21:21 -04:00
|
|
|
PluginGUI* createChannel(const QString& channelName, DeviceAPI *deviceAPI);
|
2015-05-11 20:53:35 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
static const PluginDescriptor m_pluginDescriptor;
|
|
|
|
|
|
|
|
PluginAPI* m_pluginAPI;
|
2016-05-15 04:34:48 -04:00
|
|
|
|
|
|
|
private slots:
|
2016-05-15 21:21:21 -04:00
|
|
|
void createInstanceAM(DeviceAPI *deviceAPI);
|
2015-05-11 20:53:35 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_AMPLUGIN_H
|