summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/bsdfb/main.cpp
blob: 99868567a990d929169d85e5e25f55f9986a3b98 (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
31
32
// Copyright (C) 2017 The Qt Company Ltd.
// Copyright (C) 2015-2016 Oleksandr Tymoshenko <gonzo@bluezbox.com>
// 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 "qbsdfbintegration.h"

QT_BEGIN_NAMESPACE

using namespace Qt::StringLiterals;

class QBsdFbIntegrationPlugin : public QPlatformIntegrationPlugin
{
    Q_OBJECT
    Q_PLUGIN_METADATA(IID QPlatformIntegrationFactoryInterface_iid FILE "bsdfb.json")
public:
    QPlatformIntegration *create(const QString&, const QStringList&) override;
};

QPlatformIntegration* QBsdFbIntegrationPlugin::create(const QString& system, const QStringList& paramList)
{
    Q_UNUSED(paramList);
    if (!system.compare("bsdfb"_L1, Qt::CaseInsensitive))
        return new QBsdFbIntegration(paramList);

    return nullptr;
}

QT_END_NAMESPACE

#include "main.moc"