I have a few function template, where in the documentation I want to specify the prototype manually, as the exact prototype has parts which are merely implementation detail. I checked that @fn do replace the function prototype with the one that I manually specify, but only in detailed description, and only when no overload/specialization is present.
e.g.
/**
* foo function
* @tparam T models a numeric type
* @param x arg
* @fn template<class T> int foo(T x)
*/
template<class T>
typename std::enable_if<std::is_unsigned<T>,int>::type foo(T x) {}
template<class T>
typename std::enable_if<std::is_signed<T>,int>::type foo(T x) {}
This works as long as the second foo is not present, and only in detailed description section. With the second foo the function prototype surprisingly gets changed to the second one even though that is not documented (and the brief description remains same as the first one)!
I can use preprocessor guard to make only the desired signature visible to doxygen, but is there any better alternative? As I feel the preprocessor guard hurts the code readability too much. I am even open to any better tool tailored towards c++ with simple setup (may be something based on Clang ?).