Added more comments

This commit is contained in:
jwellbelove 2016-11-14 16:54:05 +00:00
parent 670de34441
commit e5e3a6a4fc

View File

@ -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 <typename TParameter, const int ID>
class callback
{