File indexing completed on 2024-11-10 04:57:03

0001 /*
0002     SPDX-FileCopyrightText: 2019 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include "clockskewnotifierengine_p.h"
0008 #if defined(Q_OS_LINUX)
0009 #include "clockskewnotifierengine_linux.h"
0010 #endif
0011 
0012 namespace KWin
0013 {
0014 
0015 ClockSkewNotifierEngine *ClockSkewNotifierEngine::create(QObject *parent)
0016 {
0017 #if defined(Q_OS_LINUX)
0018     return LinuxClockSkewNotifierEngine::create(parent);
0019 #else
0020     return nullptr;
0021 #endif
0022 }
0023 
0024 ClockSkewNotifierEngine::ClockSkewNotifierEngine(QObject *parent)
0025     : QObject(parent)
0026 {
0027 }
0028 
0029 } // namespace KWin
0030 
0031 #include "moc_clockskewnotifierengine_p.cpp"