summaryrefslogtreecommitdiffstats
path: root/src/android/jar/src/org/qtproject/qt/android/BackendRegister.java
blob: b66a593ec6b79fedf5bc9e852862e8abf078e719 (plain)
1
2
3
4
5
6
7
8
9
// 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
package org.qtproject.qt.android;

class BackendRegister
{
    static native void registerBackend(Class interfaceType, Object interfaceObject);
    static native void unregisterBackend(Class interfaceType);
}