You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
548 B
28 lines
548 B
/* |
|
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 |
|
};
|
|
|