ladybird/Userland/Libraries/LibTimeZone/Forward.h
Timothy Flynn fa005bd276 LibTimeZone: Parse and generate a list of time zones used by region
The zone1970.tab file in the TZDB contains regional time zone data, some
of which we already parse for the system time zone settings map.

This parses the region names from that file and generates a list of time
zones which are used in each of those regions.
2022-07-06 16:56:42 +02:00

18 lines
262 B
C++

/*
* Copyright (c) 2022, Tim Flynn <trflynn89@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Types.h>
namespace TimeZone {
enum class DaylightSavingsRule : u8;
enum class Region : u8;
enum class TimeZone : u16;
}