File indexing completed on 2024-05-12 04:42:45

0001 /*
0002     SPDX-FileCopyrightText: 2019-2021 Volker Krause <vkrause@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef KPUBLICTRANSPORT_TIMEUTIL_P_H
0008 #define KPUBLICTRANSPORT_TIMEUTIL_P_H
0009 
0010 class QDateTime;
0011 class QTimeZone;
0012 
0013 namespace KPublicTransport {
0014 
0015 /** Utilities for dealing with date/time values. */
0016 namespace TimeUtil
0017 {
0018     QDateTime applyTimeZone(QDateTime dt, const QTimeZone &tz);
0019 }
0020 
0021 }
0022 
0023 #endif // KPUBLICTRANSPORT_TIMEUTIL_P_H