Files
RedBear-OS/local/recipes/kde/kwin/src/scene/rootitem.h
T

26 lines
380 B
C++

/*
SPDX-FileCopyrightText: 2024 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include "scene/item.h"
namespace KWin
{
/**
* The RootItem type represents the root item in the scene.
*/
class KWIN_EXPORT RootItem : public Item
{
Q_OBJECT
public:
explicit RootItem(Scene *scene);
};
} // namespace KWin