File indexing completed on 2025-02-02 05:02:41

0001 /*
0002     SPDX-FileCopyrightText: 2020-2022 Volker Krause <vkrause@kde.org>
0003     SPDX-License-Identifier: LGPL-2.0-or-later
0004 */
0005 
0006 #ifndef KANDROIDEXTRAS_MOCK_QJNIOBJECT_H
0007 #define KANDROIDEXTRAS_MOCK_QJNIOBJECT_H
0008 
0009 #include "mock_jniobject.h"
0010 
0011 /** Mock object for QJniObject outside of Android, for automated testing. */
0012 class KANDROIDEXTRAS_EXPORT QJniObject : public KAndroidExtras::Internal::MockJniObject<QJniObject> {
0013 public:
0014     using MockJniObject<QJniObject>::MockJniObject;
0015 };
0016 
0017 Q_DECLARE_METATYPE(QJniObject)
0018 
0019 #endif