How to link to class methods in doxygen html -
i've got setup use doxygen describe set on unit tests (i use qttest run tests). output tests parsed little python snippet produces nice , tidy report. now, i'd love link report each test case, i.e. private slot member method, in doxygen material. however, anchors defined doxygen looks this:
<a class="anchor" id="a2a0e066d4dad8e0dff6c9231bf65fd65"></a> <!-- doxytag: member="pradiotunertst::scanfm" ref="a2a0e066d4dad8e0dff6c9231bf65fd65" args="()" -->
sure, parse doxygen html , match method reference key, i'd rather have readable links. not overload unit test case methods, having them enumerated not issue - i'd able pick first , only. i'd happy calculate id hash myself. need know how to.
so, basically, questions is:
- does know how tune doxygen generate readable anchors
- if not, how calculate hash?
instead of trying reconstruct hash (which md5 checksum on method's definition parsed doxygen, see memberdef::setanchor() in code). suggest let doxygen generate tag file (generate_tagfile) , parse that. tag file simple xml file has both name , anchor each member.
Comments
Post a Comment