How can I create a documentation for a group of functions which have different parameters (but I want them to share the same documentation) ?
I tried
/// @brief ...
///
/// @{
void func1(int a);
void func2(float b, void *c);
/// @}
but that is redundantly putting the documentation on each function, plus doxygen is warning me if I try to document a parameter.
If I use DISTRIBUTE_GROUP_DOC to false then it's working but just func1 is clickable, not the other ones.
@copydoc. It's not quite what you're after but does mean there's only one instance of the documentation, which is presumably the underlying aim.