From e5e3a6a4fce57387edbdbc841afa4161321dca7f Mon Sep 17 00:00:00 2001 From: jwellbelove Date: Mon, 14 Nov 2016 16:54:05 +0000 Subject: [PATCH] Added more comments --- src/callback.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/callback.h b/src/callback.h index 73f4fdb1..0111c492 100644 --- a/src/callback.h +++ b/src/callback.h @@ -35,6 +35,13 @@ SOFTWARE. namespace etl { + //*************************************************************************** + /// A callback class designed to be multiply inherited by other client classes. + /// The class is parameterised with a callback parameter type and a unique id. + /// The unique id allows muliple callbacks with the same parameter type. + ///\tparam TParameter The callback parameter type. + ///\tparam ID The unique id for this callback. + //*************************************************************************** template class callback {