// Copyright (C) 2024 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef IOSJOYSTICKINPUTPLUGIN_H #define IOSJOYSTICKINPUTPLUGIN_H #include #include QT_BEGIN_NAMESPACE class IosJoystickInputPlugin : public QJoystickInputPlugin { Q_OBJECT Q_PLUGIN_METADATA(IID QJoystickInputFactoryInterface_iid FILE "ios.json") public: QJoystickInput *create(const QString &key, const QStringList ¶mList) override; }; QT_END_NAMESPACE #endif // IOSJOYSTICKINPUTPLUGIN_H