forked from Qortal/Brooklyn
22 lines
444 B
C
22 lines
444 B
C
|
/*
|
||
|
SPDX-FileCopyrightText: 2011 Martin Gräßlin <mgraesslin@kde.org>
|
||
|
|
||
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
#ifndef PAGERPLUGIN_H
|
||
|
#define PAGERPLUGIN_H
|
||
|
|
||
|
#include <QQmlEngine>
|
||
|
#include <QQmlExtensionPlugin>
|
||
|
|
||
|
class KickoffPlugin : public QQmlExtensionPlugin
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
|
||
|
public:
|
||
|
void registerTypes(const char *uri) override;
|
||
|
};
|
||
|
|
||
|
#endif // PAGERPLUGIN_H
|