// Copyright (C) 2017 The Qt Company Ltd. // Copyright (C) 2015-2016 Oleksandr Tymoshenko // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #include #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"