From cbe639900805e2281121b59dbd4dff8f491fe59b Mon Sep 17 00:00:00 2001 From: qPCR4vir Date: Tue, 1 Mar 2016 18:57:03 +0100 Subject: [PATCH] doxy --- include/nana/gui/detail/general_events.hpp | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/include/nana/gui/detail/general_events.hpp b/include/nana/gui/detail/general_events.hpp index 8c17ff28..29dae364 100644 --- a/include/nana/gui/detail/general_events.hpp +++ b/include/nana/gui/detail/general_events.hpp @@ -57,13 +57,14 @@ namespace nana struct general_events; - /// \brief the type of the members of general_events. - - /// It connect the functions to be called as response to the event and manages that chain of responses - /// It is a functor, that get called to connect a "normal" response function, with normal "priority". - /// If a response function need another priority (unignorable or called first) it will need to be connected with - /// the specific connect function not with the operator() - /// It also permit to "emit" that event, calling all the active responders. + /** @brief the type of the members of general_events. + * + * It connect the functions to be called as response to the event and manages that chain of responses + * It is a functor, that get called to connect a "normal" response function, with normal "priority". + * If a response function need another priority (unignorable or called first) it will need to be connected with + * the specific connect function not with the operator() + * It also permit to "emit" that event, calling all the active responders. + */ template class basic_event : public detail::event_interface {