Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to hyperlink to deep Doxygen content?

As implied by Are URLs to doxygen pages permanent, URL in doxygen are not permanent.

So, how do you hyperlink deep content (ex: a specific function) in doxygen from an external site/doc ?

(For now, hinting the user on using the search box from the home seems an adequate workaround)

like image 750
Steve Schnepp Avatar asked May 16 '12 09:05

Steve Schnepp


2 Answers

Links are based on the function signature, so they persistent indeed (under the condition that SHORT_NAMES is set to NO, which is the default).

like image 100
doxygen Avatar answered Nov 17 '22 23:11

doxygen


According to this thread:

Doxygen does generate persistent links already (unless SHORT_NAMES is set to YES).

This is from the creator of doxygen (who might want to chip in here with his own, more definitive answer than mine). So it seems that you can safely assume that your URLs should not change, unless you change the names of your classes/functions of course.

like image 31
Chris Avatar answered Nov 18 '22 00:11

Chris