summaryrefslogtreecommitdiffstats
path: root/src/config.xml
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-12-02 20:00:05 (GMT)
committerGitHub <noreply@github.com>2020-12-02 20:00:05 (GMT)
commit0dd90a3c0d808c5dba9f5bd5b7ea8591783fcb3e (patch)
tree00739c37de23bff8fe55a7f3568a3dedc816ae56 /src/config.xml
parenteef7b2864d22780e470708d295bea609b43b2a26 (diff)
parent3175b34cc09c59300d5ad2868ab6aba6f4ad0646 (diff)
downloadDoxygen-0dd90a3c0d808c5dba9f5bd5b7ea8591783fcb3e.zip
Doxygen-0dd90a3c0d808c5dba9f5bd5b7ea8591783fcb3e.tar.gz
Doxygen-0dd90a3c0d808c5dba9f5bd5b7ea8591783fcb3e.tar.bz2
Merge pull request #8207 from timoffermann/feature/issue_6204
Enable UML diagrams without member fields
Diffstat (limited to 'src/config.xml')
-rw-r--r--src/config.xml11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/config.xml b/src/config.xml
index fb48c63..56dacd6 100644
--- a/src/config.xml
+++ b/src/config.xml
@@ -3444,13 +3444,22 @@ to be found in the default search path.
]]>
</docs>
</option>
- <option type='bool' id='DOT_UML_DETAILS' defval='0' depends='UML_LOOK'>
+ <option type='enum' id='DOT_UML_DETAILS' defval='NO' depends='UML_LOOK'>
<docs>
<![CDATA[
+If the \c DOT_UML_DETAILS tag is set to \c NO, doxygen will
+show attributes and methods without types and arguments in the UML graphs.
If the \c DOT_UML_DETAILS tag is set to \c YES, doxygen will
add type and arguments for attributes and methods in the UML graphs.
+If the \c DOT_UML_DETAILS tag is set to \c NONE, doxygen will not generate
+fields with class member information in the UML graphs.
+The class diagrams will look similar to the default class diagrams but using
+UML notation for the relationships.
]]>
</docs>
+ <value name="NO" />
+ <value name="YES" />
+ <value name="NONE" />
</option>
<option type='int' id='DOT_WRAP_THRESHOLD' defval='17' minval='0' maxval='1000' depends='HAVE_DOT'>
<docs>