mirror of
https://github.com/sudoxnym/open-hyperion.git
synced 2026-04-15 12:16:39 +00:00
21 lines
576 B
C++
21 lines
576 B
C++
#pragma once
|
|
|
|
#include <QtPlugin>
|
|
#include "Dependencies/ResourceManager.h"
|
|
|
|
class QString;
|
|
#define ORGBPluginInterface_IID "com.ORGBPluginInterface"
|
|
|
|
class ORGBPluginInterface
|
|
{
|
|
public:
|
|
virtual ~ORGBPluginInterface() {}
|
|
|
|
virtual std::string PluginName() const = 0;
|
|
virtual std::string PluginDesc() const = 0;
|
|
virtual std::string PluginLocal() const = 0;
|
|
|
|
virtual QWidget* CreateGUI(QWidget *Parent, ResourceManager *RM = nullptr) const = 0;
|
|
};
|
|
|
|
Q_DECLARE_INTERFACE(ORGBPluginInterface, ORGBPluginInterface_IID)
|