I’m interested to know if it is possible to have some comments in a function (c, c++, java) in a way that doxygen could put them in the generated html file.
for example:
function(...) { do_1(); /** * Call do_2 function for doing specific stuff. */ do_2(); }
No, doxygen does not support comments blocks inside function bodies. From the manual:
Section: Doxygen documenting the code