1// Copyright (C) 2022 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
3
4#define QT_WAYLANDCOMPOSITOR_BUILD_REMOVED_API
5
6#include "qtwaylandcompositorglobal.h"
7
8QT_USE_NAMESPACE
9
10#if QT_WAYLANDCOMPOSITOR_REMOVED_SINCE(6, 3)
11
12#include "qwaylandbufferref.h"
13
14bool QWaylandBufferRef::operator==(const QWaylandBufferRef &other)
15{
16 return std::as_const(t&: *this) == other;
17}
18
19bool QWaylandBufferRef::operator!=(const QWaylandBufferRef &other)
20{
21 return std::as_const(t&: *this) != other;
22}
23
24#endif // QT_WAYLANDCOMPOSITOR_REMOVED_SINCE(6, 3)
25
26#if QT_WAYLANDCOMPOSITOR_REMOVED_SINCE(6, 4)
27
28// #include "qotherheader.h"
29// // implement removed functions from qotherheader.h
30// order alphabetically
31
32#endif // QT_WAYLANDCOMPOSITOR_REMOVED_SINCE(6, 4)
33

source code of qtwayland/src/compositor/compat/removed_api.cpp