Skip to content

Commit a4ce7fc

Browse files
committedSep 8, 2014
Doxygen: Do not show private members, referenced by/references relations
This change should help to make the API docs less cluttered. The above mentioned pieces of information are not very useful for people reading docs - and core developers have their IDEs for checking references.
1 parent 4291337 commit a4ce7fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎cmake_templates/Doxyfile.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ EXTRACT_ALL = YES
297297
# If the EXTRACT_PRIVATE tag is set to YES all private members of a class
298298
# will be included in the documentation.
299299

300-
EXTRACT_PRIVATE = YES
300+
EXTRACT_PRIVATE = NO
301301

302302
# If the EXTRACT_STATIC tag is set to YES all static members of a file
303303
# will be included in the documentation.
@@ -731,13 +731,13 @@ STRIP_CODE_COMMENTS = YES
731731
# then for each documented function all documented
732732
# functions referencing it will be listed.
733733

734-
REFERENCED_BY_RELATION = YES
734+
REFERENCED_BY_RELATION = NO
735735

736736
# If the REFERENCES_RELATION tag is set to YES
737737
# then for each documented function all documented entities
738738
# called/used by that function will be listed.
739739

740-
REFERENCES_RELATION = YES
740+
REFERENCES_RELATION = NO
741741

742742
# If the REFERENCES_LINK_SOURCE tag is set to YES (the default)
743743
# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from

0 commit comments

Comments
 (0)
Please sign in to comment.