mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-25 06:36:24 +00:00
Big update.
This commit is contained in:
@@ -1,6 +1,18 @@
|
||||
/*
|
||||
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license, you may redistribute it and/or modify it under version 2 of the License, or (at your option), any later version.
|
||||
* Copyright (C) 2008-2020 TrinityCore <http://www.trinitycore.org/>
|
||||
* This file is part of the AzerothCore Project. See AUTHORS file for Copyright information
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU Affero General Public License as published by the
|
||||
* Free Software Foundation; either version 3 of the License, or (at your
|
||||
* option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
|
||||
* more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef _DURATION_H_
|
||||
@@ -9,25 +21,75 @@
|
||||
#include <chrono>
|
||||
|
||||
/// Microseconds shorthand typedef.
|
||||
typedef std::chrono::microseconds Microseconds;
|
||||
using Microseconds = std::chrono::microseconds;
|
||||
|
||||
/// Milliseconds shorthand typedef.
|
||||
typedef std::chrono::milliseconds Milliseconds;
|
||||
using Milliseconds = std::chrono::milliseconds;
|
||||
|
||||
/// Seconds shorthand typedef.
|
||||
typedef std::chrono::seconds Seconds;
|
||||
using Seconds = std::chrono::seconds;
|
||||
|
||||
/// Minutes shorthand typedef.
|
||||
typedef std::chrono::minutes Minutes;
|
||||
using Minutes = std::chrono::minutes;
|
||||
|
||||
/// Hours shorthand typedef.
|
||||
typedef std::chrono::hours Hours;
|
||||
using Hours = std::chrono::hours;
|
||||
|
||||
// Workaround for GCC and Clang 10 in C++20
|
||||
#if defined(__GNUC__) && (!defined(__clang__) || (__clang_major__ == 10))
|
||||
/// Days shorthand typedef.
|
||||
using Days = std::chrono::duration<__INT64_TYPE__, std::ratio<86400>>;
|
||||
|
||||
/// Weeks shorthand typedef.
|
||||
using Weeks = std::chrono::duration<__INT64_TYPE__, std::ratio<604800>>;
|
||||
|
||||
/// Years shorthand typedef.
|
||||
using Years = std::chrono::duration<__INT64_TYPE__, std::ratio<31556952>>;
|
||||
|
||||
/// Months shorthand typedef.
|
||||
using Months = std::chrono::duration<__INT64_TYPE__, std::ratio<2629746>>;
|
||||
|
||||
#else
|
||||
|
||||
/// Days shorthand typedef.
|
||||
using Days = std::chrono::days;
|
||||
|
||||
/// Weeks shorthand typedef.
|
||||
using Weeks = std::chrono::weeks;
|
||||
|
||||
/// Years shorthand typedef.
|
||||
using Years = std::chrono::years;
|
||||
|
||||
/// Months shorthand typedef.
|
||||
using Months = std::chrono::months;
|
||||
|
||||
#endif // GCC_VERSION
|
||||
|
||||
/// time_point shorthand typedefs
|
||||
typedef std::chrono::steady_clock::time_point TimePoint;
|
||||
typedef std::chrono::system_clock::time_point SystemTimePoint;
|
||||
using TimePoint = std::chrono::steady_clock::time_point;
|
||||
using SystemTimePoint = std::chrono::system_clock::time_point;
|
||||
|
||||
/// Makes std::chrono_literals globally available.
|
||||
using namespace std::chrono_literals;
|
||||
|
||||
constexpr Days operator""_days(unsigned long long days)
|
||||
{
|
||||
return Days(days);
|
||||
}
|
||||
|
||||
constexpr Weeks operator""_weeks(unsigned long long weeks)
|
||||
{
|
||||
return Weeks(weeks);
|
||||
}
|
||||
|
||||
constexpr Years operator""_years(unsigned long long years)
|
||||
{
|
||||
return Years(years);
|
||||
}
|
||||
|
||||
constexpr Months operator""_months(unsigned long long months)
|
||||
{
|
||||
return Months(months);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user