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

0001 /*
0002  * SPDX-FileCopyrightText: 2012 Christian Mollekopf <mollekopf@kolabsys.com>
0003  *
0004  * SPDX-License-Identifier: LGPL-3.0-or-later
0005  */
0006 
0007 #include "datetimeutils.h"
0008 
0009 #include <QTimeZone>
0010 
0011 namespace Kolab
0012 {
0013 namespace DateTimeUtils
0014 {
0015 std::string getLocalTimezone()
0016 {
0017     const auto tz = QTimeZone::systemTimeZoneId();
0018     return tz.toStdString();
0019 }
0020 } // Namespace
0021 } // Namespace