Nebula
Loading...
Searching...
No Matches
timer.h
Go to the documentation of this file.
1#pragma once
2//------------------------------------------------------------------------------
13#include "core/config.h"
14#if __WIN32__
16namespace Timing
17{
18class Timer : public Win32::Win32Timer
19{ };
20}
21#elif __linux__
23namespace Timing
24{
25class Timer : public Posix::PosixTimer
26{ };
27}
28#else
29#error "Timing::Timer not implemented on this platform!"
30#endif
31
Posix implementation of the Time::Timer class.
Definition posixtimer.h:26
A timer object is the most basic object for time measurement.
Win32 implementation of the Time::Timer class.
Definition win32timer.h:27
Nebula compiler specific defines and configuration.
Definition calendartimebase.h:19