Are you able to use a single commenting block to comment multiple functions in doxygen? Below is a simple example that does not work. Can I do something similar to get what
I'm not sure about a single comment block, but a concise and easy way to do this is to use @copydoc (reference here), e.g:
@copydoc
/** * @brief Brief description * @param aParam A parameter */ void foo(int aParam) {} /** * @copydoc foo(int) */ void bar(int aParam) {}