| 1 | // Copyright (C) 2017 The Qt Company Ltd. | 
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only | 
| 3 |  | 
| 4 | #ifndef QWAYLANDQUICKSHELLINTEGRATION_H | 
| 5 | #define QWAYLANDQUICKSHELLINTEGRATION_H | 
| 6 |  | 
| 7 | #include <QtCore/QObject> | 
| 8 | #include <QtWaylandCompositor/qtwaylandcompositorglobal.h> | 
| 9 |  | 
| 10 | QT_REQUIRE_CONFIG(wayland_compositor_quick); | 
| 11 |  | 
| 12 | QT_BEGIN_NAMESPACE | 
| 13 |  | 
| 14 | class Q_WAYLANDCOMPOSITOR_EXPORT QWaylandQuickShellIntegration : public QObject | 
| 15 | { | 
| 16 |     Q_OBJECT | 
| 17 | public: | 
| 18 |     QWaylandQuickShellIntegration(QObject *parent = nullptr); | 
| 19 |     ~QWaylandQuickShellIntegration() override; | 
| 20 | }; | 
| 21 |  | 
| 22 | QT_END_NAMESPACE | 
| 23 |  | 
| 24 | #endif // QWAYLANDQUICKSHELLINTEGRATION_H | 
| 25 |  |