From 65e6d5016154d2705a439d978f2e60706cb96021 Mon Sep 17 00:00:00 2001 From: Michele Caini Date: Thu, 11 Aug 2016 17:12:39 +0200 Subject: [PATCH] docs --- src/uvw/timer.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/uvw/timer.hpp b/src/uvw/timer.hpp index 4fd9cc0e..1e4c0b58 100644 --- a/src/uvw/timer.hpp +++ b/src/uvw/timer.hpp @@ -21,6 +21,11 @@ namespace uvw { struct TimerEvent: Event { }; +/** + * @brief The TimerHandle handle. + * + * Timer handles are used to schedule events to be emitted in the future. + */ class TimerHandle final: public Handle { static void startCallback(uv_timer_t *handle) { TimerHandle &timer = *(static_cast(handle->data));