Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
removed_api.cpp
Go to the documentation of this file.
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
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(*this) == other;
17}
18
19bool QWaylandBufferRef::operator!=(const QWaylandBufferRef &other)
20{
21 return std::as_const(*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)