mirror of
https://github.com/sudoxnym/open-hyperion.git
synced 2026-05-19 12:19:04 +00:00
20 lines
368 B
C
20 lines
368 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "ORGBExamplePluginInterface.h"
|
||
|
|
|
||
|
|
#include <QObject>
|
||
|
|
#include <QString>
|
||
|
|
#include <QtPlugin>
|
||
|
|
|
||
|
|
class ORGBPlugin : public QObject, public ORGBPluginInterface
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
Q_PLUGIN_METADATA(IID ORGBPluginInterface_IID)
|
||
|
|
Q_INTERFACES(ORGBPluginInterface)
|
||
|
|
|
||
|
|
public:
|
||
|
|
~ORGBPlugin() override {}
|
||
|
|
|
||
|
|
std::string PluginName() const override;
|
||
|
|
};
|