例如,記錄局部變量如何使用Doxygen的在我的函數中的C++函數
//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
然而,當我使用的Doxygen與「HIDE_IN_BODY_DOCS」變量設置爲配置文件中的「NO」,這不執行此局部變量的特定文檔。相反,它只是需要那一點,並將其與功能文檔一起打印出來,就像它是功能中的任何其他註釋行一樣
如何使用Doxygen記錄這些局部變量?
根據你的說法,正確的*方法是記錄這樣一個變量?您看到的行爲顯然是[記錄](http://www.stack.nl/~dimitri/doxygen/manual/config.html#cfg_hide_in_body_docs)。 – Praetorian
我希望不是。文檔是關於接口的。使用註釋實現細節。 –