문제

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.

도움이 되었습니까?

해결책

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

//!
//! @file filename.h
//! @brief some description
//!
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top