2020-05-11 23:51:26 +02:00
|
|
|
// Copyright 2020 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-05-13 00:44:07 +02:00
|
|
|
#include <chrono>
|
2020-05-11 23:51:26 +02:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace Common::TimeZone {
|
|
|
|
|
|
|
|
/// Gets the default timezone, i.e. "GMT"
|
2020-08-14 15:38:45 +02:00
|
|
|
[[nodiscard]] std::string GetDefaultTimeZone();
|
2020-05-11 23:51:26 +02:00
|
|
|
|
|
|
|
/// Gets the offset of the current timezone (from the default), in seconds
|
2020-08-14 15:38:45 +02:00
|
|
|
[[nodiscard]] std::chrono::seconds GetCurrentOffsetSeconds();
|
2020-05-11 23:51:26 +02:00
|
|
|
|
|
|
|
} // namespace Common::TimeZone
|