MGL(Win32)
読み取り中…
検索中…
一致する文字列を見つけられません
mgl_chrono_module_win32.h
[詳解]
1// SPDX-License-Identifier: Zlib
2/* ------------------------------------------------------------------------- */
9/* ------------------------------------------------------------------------- */
10
11#ifndef INCGUARD_MGL_CHRONO_MODULE_WIN32_H_1617009530
12#define INCGUARD_MGL_CHRONO_MODULE_WIN32_H_1617009530
13
14#include <mgl/mgl_environment.h>
15#if defined(MGL_TARGET_WIN32)
16
18
19namespace MGL::System
20{
23{
24public:
25 Win32ChronoModule() noexcept;
26
27 [[nodiscard]] EpochTime GetCurrentEpochTime() const noexcept override;
28
29 [[nodiscard]] bool IsAvailableTickTimer() const noexcept override;
30 [[nodiscard]] TickTime GetTickTime() const noexcept override;
31 [[nodiscard]] float TicksToNanoseconds(TickTime tickTime) const noexcept override;
32};
33} // namespace MGL::System
34
35#endif // MGL_TARGET_WIN32
36#endif // INCGUARD_MGL_CHRONO_MODULE_WIN32_H_1617009530
37
38// vim: et ts=4 sw=4 sts=4
日付と時間のモジュールインターフェース
Definition mgl_chrono_module_interface.h:20
Win32用の日付と時間のモジュール
Definition mgl_chrono_module_win32.h:23
Win32ChronoModule() noexcept
コンストラクタ
Definition mgl_chrono_module_win32.cc:27
float TicksToNanoseconds(TickTime tickTime) const noexcept override
TickTimeをナノ秒に変換
Definition mgl_chrono_module_win32.cc:78
bool IsAvailableTickTimer() const noexcept override
Tickタイマーに対応しているかを取得
Definition mgl_chrono_module_win32.cc:51
TickTime GetTickTime() const noexcept override
現在のTickTimeを取得
Definition mgl_chrono_module_win32.cc:63
EpochTime GetCurrentEpochTime() const noexcept override
現在時刻をエポック時間で取得
Definition mgl_chrono_module_win32.cc:38
time_t EpochTime
UNIXエポック時間を表す型
Definition mgl_chrono_defs.h:22
uint64_t TickTime
Tickタイムを表す型
Definition mgl_chrono_defs.h:78
MGL 日付と時間のモジュールインターフェース
MGL 環境定義