summaryrefslogtreecommitdiff
path: root/tests/auto/qml/qml_cpp/qtemplategestureplugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qml_cpp/qtemplategestureplugin.h')
-rw-r--r--tests/auto/qml/qml_cpp/qtemplategestureplugin.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/auto/qml/qml_cpp/qtemplategestureplugin.h b/tests/auto/qml/qml_cpp/qtemplategestureplugin.h
deleted file mode 100644
index dd0c252..0000000
--- a/tests/auto/qml/qml_cpp/qtemplategestureplugin.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
-
-#ifndef QTEMPLATEGESTUREPLUGIN_H
-#define QTEMPLATEGESTUREPLUGIN_H
-
-#include <QObject>
-#include <QStringList>
-
-#include <qsensorgestureplugininterface.h>
-
-class QTemplateGesturePlugin : public QObject, public QSensorGesturePluginInterface
-{
- Q_OBJECT
- //Q_PLUGIN_METADATA(IID "org.qt-project.QSensorGesturePluginInterface" FILE "plugin.json")
- Q_INTERFACES(QSensorGesturePluginInterface)
-public:
- explicit QTemplateGesturePlugin();
- ~QTemplateGesturePlugin();
-
- QList<QSensorGestureRecognizer *> createRecognizers() override;
-
- QStringList gestureSignals() const;
- QStringList supportedIds() const override;
- QString name() const override { return "TemplateGestures"; }
-};
-
-#endif // QTEMPLATEGESTUREPLUGIN_H