kwin/src/waylandshellintegration.h
2022-04-25 11:33:55 +00:00

25 lines
394 B
C++

/*
SPDX-FileCopyrightText: 2020 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include "window.h"
namespace KWin
{
class WaylandShellIntegration : public QObject
{
Q_OBJECT
public:
explicit WaylandShellIntegration(QObject *parent = nullptr);
Q_SIGNALS:
void windowCreated(Window *window);
};
} // namespace KWin