blob: faf32887c78c47c02f313aefa72993f006dc43ff (
plain)
123456789101112131415161718192021222324252627282930313233 | // Copyright (C) 2016 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#include"qplatformintegrationplugin.h" QT_BEGIN_NAMESPACE QPlatformIntegrationPlugin::QPlatformIntegrationPlugin(QObject *parent):QObject(parent){}QPlatformIntegrationPlugin::~QPlatformIntegrationPlugin(){} QPlatformIntegration *QPlatformIntegrationPlugin::create(const QString &key,const QStringList ¶mList){Q_UNUSED(key);Q_UNUSED(paramList);returnnullptr;} QPlatformIntegration *QPlatformIntegrationPlugin::create(const QString &key,const QStringList ¶mList,int&argc,char**argv){Q_UNUSED(argc);Q_UNUSED(argv);returncreate(key, paramList);// Fallback for platform plugins that do not implement the argc/argv version.} QT_END_NAMESPACE #include"moc_qplatformintegrationplugin.cpp"
|