如果我有带有 doxygen 注释的 ac 头文件:
/*!
* @file MyHeaderFile.h
* @brief Brief header file description
* @author Me Myself
* @date 2012.4.16
*/
这导致像这样的html:
同样的语法在函数注释中也能正常工作:
我做错了什么还是这一切都受支持?
编辑:正常功能评论:
/*!
* @brief This function does things
*
* @author Me Myself
* @date 2012.4.16
*
* @returns void
*/
void MyFunctionThing(void)
{
}