1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-16 09:56:34 -04:00
sdrangel/plugins/channel/am/amplugin.h
2015-05-12 02:53:35 +02:00

30 lines
630 B
C++

#ifndef INCLUDE_AMPLUGIN_H
#define INCLUDE_AMPLUGIN_H
#include <QObject>
#include "plugin/plugininterface.h"
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);
private:
static const PluginDescriptor m_pluginDescriptor;
PluginAPI* m_pluginAPI;
private slots:
void createInstanceAM();
};
#endif // INCLUDE_AMPLUGIN_H