2025-07-11 02:22:21 +03:30
|
|
|
#include <time/timer.hpp>
|
2025-07-05 13:28:41 +03:30
|
|
|
|
2025-07-11 00:05:48 +03:30
|
|
|
namespace lt {
|
2025-07-05 13:28:41 +03:30
|
|
|
|
2025-07-15 15:11:03 +03:30
|
|
|
Timer::Timer(Timepoint start): m_start(start)
|
2025-07-05 13:28:41 +03:30
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2025-07-15 15:11:03 +03:30
|
|
|
void Timer::reset(Timepoint start)
|
|
|
|
{
|
|
|
|
m_start = start;
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] auto Timer::elapsed_time() const -> Duration
|
|
|
|
{
|
|
|
|
return { std::chrono::steady_clock::now() - m_start };
|
|
|
|
}
|
|
|
|
|
2025-07-11 00:05:48 +03:30
|
|
|
} // namespace lt
|