Re: [Doxygen-users] HIDE_UNDOC_MEMBERS/CLASSES = YES not working
Brought to you by:
dimitri
|
From: Daniel R. <dr...@ma...> - 2007-03-25 09:19:48
|
Augusto Jun Devegili wrote: > Hello all, > > I'm using Doxygen 1.5.1 and I haven't managed to hide undocumented > members. My source code is C (no C++) and every structure is listed on > the documentation, and for each structure every member is also listed, > even though not every structure/member is documented. The build > related options of my configuration file are > > EXTRACT_ALL = NO > EXTRACT_PRIVATE = NO > EXTRACT_STATIC = NO > EXTRACT_LOCAL_CLASSES = NO > EXTRACT_LOCAL_METHODS = NO > HIDE_UNDOC_MEMBERS = YES > HIDE_UNDOC_CLASSES = YES > HIDE_FRIEND_COMPOUNDS = NO > HIDE_IN_BODY_DOCS = NO > INTERNAL_DOCS = NO > CASE_SENSE_NAMES = YES > HIDE_SCOPE_NAMES = YES > SHOW_INCLUDE_FILES = YES > INLINE_INFO = YES > SORT_MEMBER_DOCS = YES > SORT_BRIEF_DOCS = YES > SORT_BY_SCOPE_NAME = NO > GENERATE_TODOLIST = NO > GENERATE_TESTLIST = NO > GENERATE_BUGLIST = NO > GENERATE_DEPRECATEDLIST= NO > ENABLED_SECTIONS = > MAX_INITIALIZER_LINES = 30 > SHOW_USED_FILES = YES > SHOW_DIRECTORIES = NO > FILE_VERSION_FILTER = > > > Any ideas of why HIDE_UNDOC_MEMBERS/CLASSES = YES is not working? Hi Augusto, it's strange, but (using doxygen 1.5.1 as well as 1.5.1-20070219) I get a behaviour that's somewhat of the opposite of what you describe. In fact, without EXTRACT_ALL set to YES I never get to see undocumented structs. The undocumented members do show, though, depending on the setting of HIDE_UNDOC_MEMBERS, so that switch seems to work (for me). Could you post a complete test case, as I will post mine (see attached)? Have fun ----Daniel PS: In my test case, only `documented_struct_only' and `fully_documented' show in the `Data structures' list. |