命令 @file 会中断 doxygen 生成的 HTML 文档中描述部分的生成。
/**
@file Class.h
@brief Brief desc.
Description text.
*/
在 Class.h 的输出中,没有生成描述部分。因此文本“Brief desc”和“Description text”不会出现。
/**
Class.h
@brief Brief desc.
Description text.
*/
将按预期生成描述部分。
因为我想记录全局 typdef,所以 @file 命令是必要的。
配置中是否有任何参数可以强制生成描述?