我想删除行,如下所示,但我仍然希望返回源代码浏览
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
update:我只是尝试设置以下内容,并且似乎完成了这些工作,但等待确认这是否是实现我想要的目标的正确方法
SOURCE_BROWSER = NO
发布于 2010-05-26 13:08:19
明白了
SOURCE_BROWSER = NO
发布于 2012-08-30 10:21:51
文件也提到
要去掉生成的输出中的所有源代码,请确保同时将
设置为NO.
。
https://stackoverflow.com/questions/2913043
复制相似问题