// clang-format off // SPDX-FileCopyrightText: 2023 Klarälvdalens Datakonsult AB, a KDAB Group company // clang-format on // SPDX-FileContributor: Andrew Hayzen // // SPDX-License-Identifier: MIT OR Apache-2.0 #pragma once #include #include #include #include #include namespace rust { namespace cxxqtlib1 { QList qtimezoneAvailableTimeZoneIds(); ::std::unique_ptr qtimezoneClone(const QTimeZone& timezone); ::std::unique_ptr qtimezoneDefault(); ::std::unique_ptr qtimezoneFromOffsetSeconds(::std::int32_t offsetSeconds); ::std::unique_ptr qtimezoneFromIana(const QByteArray& ianaId); ::std::unique_ptr qtimezoneSystemTimeZone(); QByteArray qtimezoneSystemTimeZoneId(); ::std::unique_ptr qtimezoneUtc(); } }