// Copyright (C) 2018 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only #ifndef QWAYLANDUTILS_P_H #define QWAYLANDUTILS_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include struct wl_resource; QT_BEGIN_NAMESPACE namespace QtWayland { template return_type fromResource(struct ::wl_resource *resource) { if (auto *r = std::remove_pointer::type::Resource::fromResource(resource)) return static_cast(r->object()); return nullptr; } } // namespace QtWayland QT_END_NAMESPACE #endif // QWAYLANDUTILS_P_H