In case I have my documentation separate from my code, how do I help Doxygen distinguish between overloaded functions (what to use in the \fn
field)? A single function would be documented like this:
void func() {
}
/**
\fn func
\details Description here.
*/
What if I have two functions called func
?
void func() {
}
void func(int i) {
}
/**
\fn [What goes here?]
\details Description here.
*/