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
11class KSystemClockSkewNotifierEngine : public QObject
12{
13 Q_OBJECT
14
15public:
16 static std::shared_ptr<KSystemClockSkewNotifierEngine> globalInstance();
17
18protected:
19 explicit KSystemClockSkewNotifierEngine(QObject *parent = nullptr);
20
21Q_SIGNALS:
22 void skewed();
23};
24

source code of kcoreaddons/src/lib/util/ksystemclockskewnotifierengine_p.h