Warning, file /plasma/kwin/src/wayland/clientbuffer_p.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002     SPDX-FileCopyrightText: 2021 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #pragma once
0008 
0009 #include "clientbuffer.h"
0010 
0011 namespace KWaylandServer
0012 {
0013 class ClientBufferPrivate
0014 {
0015 public:
0016     virtual ~ClientBufferPrivate()
0017     {
0018     }
0019 
0020     int refCount = 0;
0021     wl_resource *resource = nullptr;
0022     bool isDestroyed = false;
0023 };
0024 
0025 } // namespace KWaylandServer