| 1 | /* |
|---|---|
| 2 | SPDX-FileCopyrightText: 2019 Vlad Zahorodnii <vlad.zahorodnii@kde.org> |
| 3 | |
| 4 | SPDX-License-Identifier: LGPL-2.1-or-later |
| 5 | */ |
| 6 | |
| 7 | #pragma once |
| 8 | |
| 9 | #include <QObject> |
| 10 | |
| 11 | class KSystemClockSkewNotifierEngine : public QObject |
| 12 | { |
| 13 | Q_OBJECT |
| 14 | |
| 15 | public: |
| 16 | static std::shared_ptr<KSystemClockSkewNotifierEngine> globalInstance(); |
| 17 | |
| 18 | protected: |
| 19 | explicit KSystemClockSkewNotifierEngine(QObject *parent = nullptr); |
| 20 | |
| 21 | Q_SIGNALS: |
| 22 | void skewed(); |
| 23 | }; |
| 24 |
