/* SPDX-FileCopyrightText: 2009 Till Adam SPDX-License-Identifier: LGPL-2.0-or-later */ #pragma once #include "ktimezonedbase.h" class RegistryWatcherThread; class KTimeZoned : public KTimeZonedBase { Q_OBJECT friend class RegistryWatcherThread; public: KTimeZoned(QObject *parent, const QList &); ~KTimeZoned(); private: /** reimp */ void init(bool); void updateLocalZone(); RegistryWatcherThread *mRegistryWatcherThread; // thread that watches the timezone registry key };