summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/haiku/main.h
blob: e2eeea7a9c69c183f1ff0d24f4ea4196a434d94d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2015 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Tobias Koenig <tobias.koenig@kdab.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>

QT_BEGIN_NAMESPACE

class QHaikuIntegrationPlugin : public QPlatformIntegrationPlugin
{
    Q_OBJECT
    Q_PLUGIN_METADATA(IID QPlatformIntegrationFactoryInterface_iid FILE "haiku.json")

public:
    QPlatformIntegration *create(const QString&, const QStringList&) override;
};

QT_END_NAMESPACE