mirror of
https://github.com/logos-blockchain/logos-blockchain-ui.git
synced 2026-02-15 02:53:07 +00:00
15 lines
364 B
C++
15 lines
364 B
C++
#pragma once
|
|
|
|
#include <IComponent.h>
|
|
#include <QObject>
|
|
|
|
class BlockchainPlugin : public QObject, public IComponent {
|
|
Q_OBJECT
|
|
Q_INTERFACES(IComponent)
|
|
Q_PLUGIN_METADATA(IID IComponent_iid FILE "metadata.json")
|
|
|
|
public:
|
|
Q_INVOKABLE QWidget* createWidget(LogosAPI* logosAPI = nullptr) override;
|
|
void destroyWidget(QWidget* widget) override;
|
|
};
|