【发布时间】:2014-10-14 22:58:21
【问题描述】:
我知道有类似的问题,但我没有找到可以解决我的问题的答案,我有一个由一个头文件组成的程序,其中包括多个 static 变量和函数。
变量在多个源文件中使用,然后有不同的含义,功能也每次以不同的方式实现。我的问题是如何在HTML doxygen 文件中看到我在源文件中的评论。喜欢:
/*!<
function that does stuff
@param value representing the mean stuff
*/
double func(double* value){
FILE* inp =NULL; /*!< the file pointer of this function to write the result*/
.............................................//!* all this commments should be see in functiopn description
}
据我所知,如果我在文档中打开源文件,我会看到注释,但我想解释每个函数的作用以及它是如何工作的!
提前感谢您的帮助!
【问题讨论】: