hello.
Is there some way to document template parameters like this:
template<
int N, ///< description
typename T ///< description
>
rather than listing each parameter with tparam
?
please note that function arguments can be documented like this in current doxygen:
void function(int a /**< description */);
if there is not one, how hard would be to implement it? if you are familiar with doxygen internals, can you point me in the direction where to implement it.
thank you