1/*
2 SPDX-FileCopyrightText: 2011 Marco Martin <mart@kde.org>
3
4 SPDX-License-Identifier: MIT
5*/
6
7#ifndef DRAGANDDROPPLUGIN_H
8#define DRAGANDDROPPLUGIN_H
9
10#include <QQmlExtensionPlugin>
11
12class DragAndDropPlugin : public QQmlExtensionPlugin
13{
14 Q_OBJECT
15 Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
16
17public:
18 void registerTypes(const char *uri) override;
19};
20
21#endif
22

source code of kdeclarative/src/qmlcontrols/draganddrop/draganddropplugin.h