2014-05-18 11:52:39 -04:00
|
|
|
#ifndef INCLUDE_RTLSDRPLUGIN_H
|
|
|
|
#define INCLUDE_RTLSDRPLUGIN_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include "plugin/plugininterface.h"
|
|
|
|
|
2015-09-30 23:05:46 -04:00
|
|
|
#define RTLSDR_DEVICE_TYPE_ID "sdrangel.samplesource.rtlsdr"
|
|
|
|
|
2015-08-25 20:03:20 -04:00
|
|
|
class RTLSDRPlugin : public QObject, public PluginInterface {
|
2014-05-18 11:52:39 -04:00
|
|
|
Q_OBJECT
|
|
|
|
Q_INTERFACES(PluginInterface)
|
2015-09-30 23:05:46 -04:00
|
|
|
Q_PLUGIN_METADATA(IID RTLSDR_DEVICE_TYPE_ID)
|
2014-05-18 11:52:39 -04:00
|
|
|
|
|
|
|
public:
|
|
|
|
explicit RTLSDRPlugin(QObject* parent = NULL);
|
|
|
|
|
|
|
|
const PluginDescriptor& getPluginDescriptor() const;
|
|
|
|
void initPlugin(PluginAPI* pluginAPI);
|
|
|
|
|
2015-09-30 03:01:29 -04:00
|
|
|
virtual SampleSourceDevices enumSampleSources();
|
|
|
|
virtual PluginGUI* createSampleSourcePluginGUI(const QString& sourceId);
|
2014-05-18 11:52:39 -04:00
|
|
|
|
2015-09-30 23:05:46 -04:00
|
|
|
static const QString m_deviceTypeID;
|
|
|
|
|
2014-05-18 11:52:39 -04:00
|
|
|
private:
|
|
|
|
static const PluginDescriptor m_pluginDescriptor;
|
|
|
|
|
|
|
|
PluginAPI* m_pluginAPI;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_RTLSDRPLUGIN_H
|