Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

DoxyGen ignores functions

I have a file like:

/** @file some description */

void SomeFunc();///< brief function description

The @file keyword is needed to document global functions, as per Doxygen mailing list. So here it is, but Doxygen keeps ignoring SomeFunc(), i.e. it doesn't appear anywhere in documentation.

like image 305
Hi-Angel Avatar asked Dec 12 '25 05:12

Hi-Angel


1 Answers

The @file keyword is used to specify the file name, not the description. Try something like this:

//!
//! @file filename.h
//! @brief some description
//!
like image 101
piwi Avatar answered Dec 13 '25 21:12

piwi



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!