summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/eglfs/deviceintegration/eglfs_emu/qeglfsemumain.cpp
blob: 22fe6ad40f6be29f6dfe1f8f15053d5d5aed6c7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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 "private/qeglfsdeviceintegration_p.h"
#include "qeglfsemulatorintegration.h"

QT_BEGIN_NAMESPACE

class QEglFSEmulatorIntegrationPlugin : public QEglFSDeviceIntegrationPlugin
{
    Q_OBJECT
    Q_PLUGIN_METADATA(IID QEglFSDeviceIntegrationFactoryInterface_iid FILE "eglfs_emu.json")

public:
    QEglFSDeviceIntegration *create() override { return new QEglFSEmulatorIntegration; }
};

QT_END_NAMESPACE

#include "qeglfsemumain.moc"