From 2baa77908cf04be8e0aff67bc0c4b6baa0afe8c3 Mon Sep 17 00:00:00 2001 From: Gabriele Buondonno <gbuondon@laas.fr> Date: Fri, 30 Nov 2018 16:54:56 +0100 Subject: [PATCH] [doc] Ignore useless info --- doc/Doxyfile.extra.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/Doxyfile.extra.in b/doc/Doxyfile.extra.in index a1b2202ba..2266c668b 100644 --- a/doc/Doxyfile.extra.in +++ b/doc/Doxyfile.extra.in @@ -100,7 +100,7 @@ HIDE_UNDOC_MEMBERS = NO # If set to NO (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. -#HIDE_UNDOC_CLASSES = NO +HIDE_UNDOC_CLASSES = YES # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all # friend (class|struct|union) declarations. @@ -316,6 +316,7 @@ FILE_PATTERNS = *.cc *.cpp *.h *.hpp *.hxx *.hh *.dox *.md *.py # for example use the pattern */test/* EXCLUDE_PATTERNS += CMake* \ + */d-practical-exercises/src/* \ *.txt \ *.sh \ *.orig \ @@ -338,7 +339,8 @@ EXCLUDE_PATTERNS += CMake* \ # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test -EXCLUDE_SYMBOLS = internal::* +EXCLUDE_SYMBOLS = internal::* \ + *Visitor # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see -- GitLab