ClockTypeNames.cpp
Go to the documentation of this file.
1#include "ClockTypeNames.h"
2
3namespace armarx::core
4{
5
6 const simox::meta::EnumNames<time::ClockType> time::ClockTypeNames{
7 {ClockType::Realtime, "Realtime"},
8 {ClockType::Monotonic, "Monotonic"},
9 {ClockType::Virtual, "Virtual"},
10 {ClockType::Unknown, "Unknown"},
11 };
12
13}
const simox::meta::EnumNames< ClockType > ClockTypeNames
@ Monotonic
Monotonic/steady clock of the operating system.
Definition ClockType.h:14
@ Virtual
Time given by time server if configured, realtime otherwise.
Definition ClockType.h:16
@ Realtime
Normalized time as reported by the operating system.
Definition ClockType.h:12