1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-13 19:28:41 -04:00

Reset PluginInstanceGUI to its original name

This commit is contained in:
f4exb
2017-09-26 00:22:08 +02:00
parent f270eff41d
commit 0b6eb2129a
116 changed files with 187 additions and 187 deletions
+36
View File
@@ -0,0 +1,36 @@
#ifndef INCLUDE_PLUGININSTANCEUI_H
#define INCLUDE_PLUGININSTANCEUI_H
#include <QtGlobal>
#include <QString>
#include <QByteArray>
#include "util/export.h"
class Message;
class MessageQueue;
class SDRANGEL_API PluginInstanceGUI {
public:
PluginInstanceGUI() { };
virtual ~PluginInstanceGUI() { };
virtual void destroy() = 0;
virtual void setName(const QString& name) = 0;
virtual QString getName() const = 0;
virtual void resetToDefaults() = 0;
virtual qint64 getCenterFrequency() const = 0;
virtual void setCenterFrequency(qint64 centerFrequency) = 0;
virtual QByteArray serialize() const = 0;
virtual bool deserialize(const QByteArray& data) = 0;
virtual MessageQueue* getInputMessageQueue() = 0;
virtual bool handleMessage(const Message& message) = 0;
};
#endif // INCLUDE_PLUGININSTANCEUI_H