mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 06:44:18 +00:00
29 lines
548 B
C++
29 lines
548 B
C++
/*
|
|
SPDX-FileCopyrightText: 2009 Till Adam <adam@kde.org>
|
|
|
|
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<QVariant> &);
|
|
~KTimeZoned();
|
|
|
|
private:
|
|
/** reimp */
|
|
void init(bool);
|
|
void updateLocalZone();
|
|
|
|
RegistryWatcherThread *mRegistryWatcherThread; // thread that watches the timezone registry key
|
|
};
|