56 using TimePoint = std::chrono::time_point<std::chrono::high_resolution_clock>;
59 std::chrono::milliseconds duration_{};
Enums for observer messages.
Implementation of the observer design pattern.
ControlMessages
Enum class defining control-routine-related messages.
Definition: observermessages.hh:17
Definition: assemblermanipulatorbuildingblocks.hh:22
ControlLogger class for logging control messages.
Definition: controllogger.hh:23
void updateImpl(ControlMessages message) final
Implementation of the update method for control message logging.
void updateImpl(ControlMessages message, int val1, const std::string &val2) final
Implementation of the update method for logging control messages with an integer and a string value.
void updateImpl(ControlMessages message, const std::string &val) final
Implementation of the update method for logging control messages with string values.
void updateImpl(ControlMessages message, int val1, double val2) final
Implementation of the update method for logging control messages with an integer and a double value.
Generic observer interface for the Observer design pattern. See for a description of the design patt...
Definition: observer.hh:26