File indexing completed on 2024-06-09 05:26:02

0001 /*
0002     SPDX-FileCopyrightText: 2019 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <QObject>
0010 
0011 namespace KWin
0012 {
0013 
0014 class ClockSkewNotifierEngine : public QObject
0015 {
0016     Q_OBJECT
0017 
0018 public:
0019     static ClockSkewNotifierEngine *create(QObject *parent);
0020 
0021 protected:
0022     explicit ClockSkewNotifierEngine(QObject *parent);
0023 
0024 Q_SIGNALS:
0025     void clockSkewed();
0026 };
0027 
0028 } // namespace KWin