blob: 155e0ec9a6def949d5632e7df04ac2169791e879 (
plain)
12345678910111213141516 | // Copyright (C) 2011 - 2012 Research In Motion// 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> QT_BEGIN_NAMESPACE class QQnxIntegrationPlugin :public QPlatformIntegrationPlugin { Q_OBJECT Q_PLUGIN_METADATA(IID QPlatformIntegrationFactoryInterface_iid FILE"qnx.json")public: QPlatformIntegration *create(const QString&,const QStringList&) override;}; QT_END_NAMESPACE
|