Sparkle 0.0.1
Loading...
Searching...
No Matches
spk_time_utils.hpp
1#pragma once
2
3#include <cstdint>
4
5#include "structure/system/time/spk_duration.hpp"
6#include "structure/system/time/spk_timestamp.hpp"
7
8namespace spk
9{
10 namespace TimeUtils
11 {
12 uint64_t nowNsMono();
13 Timestamp getTime();
14 void sleepFor(const spk::Duration &p_duration);
15 }
16}