/* SPDX-FileCopyrightText: 2022 Vlad Zahorodnii SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL */ #pragma once #include "kwin_export.h" #include #include struct wl_resource; namespace KWin { class Display; class IdleNotifyV1InterfacePrivate; class KWIN_EXPORT IdleNotifyV1Interface : public QObject { Q_OBJECT public: explicit IdleNotifyV1Interface(Display *display, QObject *parent = nullptr); ~IdleNotifyV1Interface() override; private: std::unique_ptr d; }; }