18 lines
265 B
C++
18 lines
265 B
C++
|
/*
|
||
|
SPDX-FileCopyrightText: 2020 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
|
||
|
|
||
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
#include "vsyncmonitor.h"
|
||
|
|
||
|
namespace KWin
|
||
|
{
|
||
|
|
||
|
VsyncMonitor::VsyncMonitor(QObject *parent)
|
||
|
: QObject(parent)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
} // namespace KWin
|