summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/android/main.cpp
blob: 0e749f55a57da2a05e0d64e9e34231c69b3e7cce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright (C) 2019 BogDan Vatra <bogdan@kde.org>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only


#include <qpa/qplatformintegrationplugin.h>
#include "qandroidplatformintegration.h"

QT_BEGIN_NAMESPACE

using namespace Qt::StringLiterals;

class QAndroidIntegrationPlugin : public QPlatformIntegrationPlugin
{
    Q_OBJECT
    Q_PLUGIN_METADATA(IID QPlatformIntegrationFactoryInterface_iid FILE "android.json")

public:
    QPlatformIntegration *create(const QString& system, const QStringList& paramList) override;
};

QPlatformIntegration *QAndroidIntegrationPlugin::create(const QString& system, const QStringList& paramList)
{
    if (!system.compare("android"_L1, Qt::CaseInsensitive))
        return new QAndroidPlatformIntegration(paramList);

    return nullptr;
}

QT_END_NAMESPACE
#include "main.moc"