/* SPDX-FileCopyrightText: 2019 Vlad Zahorodnii SPDX-License-Identifier: GPL-2.0-or-later */ #pragma once #include namespace KWin { class ClockSkewNotifierEngine : public QObject { Q_OBJECT public: static ClockSkewNotifierEngine *create(QObject *parent); protected: explicit ClockSkewNotifierEngine(QObject *parent); Q_SIGNALS: void clockSkewed(); }; } // namespace KWin