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));