525d12bee5
If you want git blame to ignore formatting revisions run: git config blame.ignoreRevsFile .git-blame-ignore-revs
25 lines
450 B
C++
25 lines
450 B
C++
/*
|
|
SPDX-FileCopyrightText: 2021 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "clientbuffer.h"
|
|
|
|
namespace KWaylandServer
|
|
{
|
|
class ClientBufferPrivate
|
|
{
|
|
public:
|
|
virtual ~ClientBufferPrivate()
|
|
{
|
|
}
|
|
|
|
int refCount = 0;
|
|
wl_resource *resource = nullptr;
|
|
bool isDestroyed = false;
|
|
};
|
|
|
|
} // namespace KWaylandServer
|