c++ - DoxyGen ignores a functions -
i have example file this
/** @file description */ void somefunc();///< brief function description
the @file keyword needed document global functions, as told in doxygen mailing. here is, anyway, doxygen continues ignoring code, i.e. somefunc() doesn't appears anywhere in documentation.
the @file
keyword used specify file name, not description. try this:
//! //! @file filename.h //! @brief description //!
Comments
Post a Comment