File indexing completed on 2024-05-12 05:32:21

0001 /*
0002     SPDX-FileCopyrightText: 2022 David Edmundson <davidedmundson@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 "kwin_export.h"
0010 
0011 #include <QObject>
0012 #include <memory>
0013 
0014 namespace KWin
0015 {
0016 class Display;
0017 class FractionalScaleManagerV1InterfacePrivate;
0018 
0019 class KWIN_EXPORT FractionalScaleManagerV1Interface : public QObject
0020 {
0021     Q_OBJECT
0022 
0023 public:
0024     explicit FractionalScaleManagerV1Interface(Display *display, QObject *parent = nullptr);
0025     ~FractionalScaleManagerV1Interface() override;
0026 
0027 private:
0028     std::unique_ptr<FractionalScaleManagerV1InterfacePrivate> d;
0029 };
0030 
0031 } // namespace KWin