mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-15 19:55:53 +00:00
22 lines
402 B
C
22 lines
402 B
C
|
/*
|
||
|
SPDX-FileCopyrightText: 2012 Marco Martin <mart@kde.org>
|
||
|
|
||
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
#ifndef TRASHPLUGIN_H
|
||
|
#define TRASHPLUGIN_H
|
||
|
|
||
|
#include <QQmlExtensionPlugin>
|
||
|
|
||
|
class TrashPrivatePlugin : public QQmlExtensionPlugin
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
|
||
|
|
||
|
public:
|
||
|
void registerTypes(const char *uri) override;
|
||
|
};
|
||
|
|
||
|
#endif
|