I have a situation in C++ where there are factory methods with different names and return values, but many common parameters. For example:
SomeType1 *getSomeType1 (const std::string &name, int id);
SomeType2 *getSomeType2 (const std::string &name, int id, int specific_to_type2);
SomeType3 *getSomeType3 (const std::string &name, int id, int specific_to_type3);
Except in my real case, there are several dozen methods and six to seven common parameters. Is there a way to tell Doxygen to define common parameters for a block of related methods like this? Otherwise, I'm stuck with repeating all of the information for each method, and not only is it tiresome and bulky, it's harder to maintain and ultimately hard to read.
I've searched for "Doxygon" and "repetitive" or "repeated" methods and/or parameters but without any luck.