例如,在我的函数中
//starting code with doxygen documentation
/** The main function. I will now try to document variables within this main function*/
int main()
{
int arr[]; /** \brief an integer array*/
.....
return 0;
}
//end of code
但是,当我在配置文件中将“HIDE_IN_BODY_DOCS”变量设置为“NO”的情况下使用 Doxygen 时,这不会执行此局部变量的特定文档。相反,它只需要该位并将其与函数文档一起打印,就好像它是函数中的任何其他注释行一样
如何使用 Doxygen 记录这些局部变量?