summaryrefslogblamecommitdiffstats
path: root/src/common/time_zone.h
blob: 945daa09ce30b74d280498595604b255975eb62d (plain) (tree)
1
2
3
4
5
6
7





                                            
                 







                                                                          
                                               

                               
// Copyright 2020 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <chrono>
#include <string>

namespace Common::TimeZone {

/// Gets the default timezone, i.e. "GMT"
std::string GetDefaultTimeZone();

/// Gets the offset of the current timezone (from the default), in seconds
std::chrono::seconds GetCurrentOffsetSeconds();

} // namespace Common::TimeZone