2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2015-04-09 12:49:32 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2015 Martin Gräßlin <mgraesslin@kde.org>
|
2015-04-09 12:49:32 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2015-04-09 12:49:32 +00:00
|
|
|
#ifndef KWIN_SCREENS_DRM_H
|
|
|
|
#define KWIN_SCREENS_DRM_H
|
2020-12-17 10:34:04 +00:00
|
|
|
#include "screens.h"
|
2015-04-09 12:49:32 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
class DrmBackend;
|
|
|
|
|
2020-12-17 10:34:04 +00:00
|
|
|
class DrmScreens : public Screens
|
2015-04-09 12:49:32 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
DrmScreens(DrmBackend *backend, QObject *parent = nullptr);
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|