// 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 MACOSMOUSEINPUTPLUGIN_H #define MACOSMOUSEINPUTPLUGIN_H #include #include QT_BEGIN_NAMESPACE class MacOsMouseInputPlugin : public QMouseInputPlugin { Q_OBJECT Q_PLUGIN_METADATA(IID QMouseInputFactoryInterface_iid FILE "macos.json") public: QMouseInput *create(const QString &key, const QStringList ¶mList) override; }; QT_END_NAMESPACE #endif // MACOSMOUSEINPUTPLUGIN_H