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

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -