Re: [Doxygen-users] Linking to function pointer arguments

2015-07-30 Thread Dimitri van Heesch
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

[Doxygen-users] Linking to function pointer arguments

2015-07-28 Thread Barnes, Peter D.
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((*))