summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/qnx/main.h
blob: 155e0ec9a6def949d5632e7df04ac2169791e879 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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