Reputation: 307
Let's say I have a class Foo
with a member function bar()
, documented with Doxygen:
foo.h:
/// This is the Foo class.
class Foo
{
/// Does something.
void bar();
};
and a page in a separate file where I want to reference bar()
(written in Markdown):
notes.md:
To do something, call bar().
I want "bar()" in the generated page to link to the documentation for the bar()
function. I can make this happen by writing Foo::bar()
instead, but I don't want it to be displayed as "Foo::bar()" in the page. What is a good way to make this happen?
Upvotes: 1
Views: 2833