File indexing completed on 2024-11-24 04:44:12

0001 /*
0002  * SPDX-FileCopyrightText: 2012 Christian Mollekopf <mollekopf@kolabsys.com>
0003  *
0004  * SPDX-License-Identifier: LGPL-3.0-or-later
0005  */
0006 
0007 #pragma once
0008 
0009 #include <QString>
0010 
0011 class TimezoneConverter
0012 {
0013 public:
0014     static QString normalizeTimezone(const QString &tz);
0015 
0016 private:
0017     static QString fromCityName(const QString &tz);
0018     static QString fromHardcodedList(const QString &tz);
0019     static QString fromGMTOffsetTimezone(const QString &tz);
0020 };