Hi Peter,
I'd say that '@see Functor(void(*)(void))' is the one that should have worked,
but I see it doesn't. Feel free to submit a bug report for this.
A workaround (that also helps a bit with readability IMHO):
/** A functor
* @see Functor() or Functor(Function)
*/
class Functor
{
public
Hello Folks,
I want to link to an overloaded function with this signature:
Functor(void(*function)(void));
Because Functor is overloaded, I have to give the full signature, but I can’t
figure out how doxygen wants it expressed. I’ve tried all of these:
@see Functor(*)
@see Functor((*))