如何在doxygen中删除生成输出中的行引用?

时间:2010-05-26 12:46:42

标签: doxygen

我想删除行看起来如下,但我仍然希望返回源代码浏览

Definition at line 377 of file xxx.h. 

我在doxygen配置文件中尝试了以下两个,但这些只删除了类型

上的交叉引用
# If the REFERENCES_RELATION tag is set to YES 
# then for each documented function all documented entities 
# called/used by that function will be listed.

REFERENCES_RELATION    = NO

# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) 
# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from 
# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will 
# link to the source code.  Otherwise they will link to the documentation.

REFERENCES_LINK_SOURCE = NO

更新:我只是尝试设置以下内容并且似乎正在执行这些工作但是等待确认这是否是实现我想要的正确方法

SOURCE_BROWSER         = NO

2 个答案:

答案 0 :(得分:11)

搞定了

SOURCE_BROWSER = NO

答案 1 :(得分:2)

文档也提到了

  

要删除生成的输出中的所有源代码,请确保   VERBATIM_HEADERS设置为NO。