Skip to content

Commit

Permalink
doxygen: avoid most internals
Browse files Browse the repository at this point in the history
For some reason, all the interals are documented by default.
This is wrong for two basic reasons:

 - We need to focus on public interfaces, since those are
   the architectural interfaces and relationships.

 - Since virtually nothing has doxygen support yet, this
   maximizes the noise, and minimizes the usefulness of
   doxygen output.

So don't expose so much by default.
  • Loading branch information
David Brownell committed Nov 2, 2009
1 parent 2120231 commit 13e2644
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -307,13 +307,13 @@ EXTRACT_PRIVATE = NO
# If the EXTRACT_STATIC tag is set to YES all static members of a file
# will be included in the documentation.

EXTRACT_STATIC = YES
EXTRACT_STATIC = NO

# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
# defined locally in source files will be included in the documentation.
# If set to NO only classes defined in header files are included.

EXTRACT_LOCAL_CLASSES = YES
EXTRACT_LOCAL_CLASSES = NO

# This flag is only useful for Objective-C code. When set to YES local
# methods, which are defined in the implementation section but not in
Expand Down

0 comments on commit 13e2644

Please sign in to comment.