-
-
Notifications
You must be signed in to change notification settings - Fork 203
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow to hide in which headers the struct is defined #725
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes for renaming to breathe_show_include
made as suggestions in Github.
Updated with the requested changes. |
When something like "doxygennamespace" is used, structures gain additional line about in which header they are defined. If the API simply serves as a generic description and no public headers are provided, this info is redundant. This can be worked around by manually by using "doxygenstruct" directive instead, but this can get messy quickly with large namespaces. Also, namespace description is lost. Allow to hide these lines by setting 'breathe_show_include' to 'False'. The default behavior stays unchanged. See breathe-doc#57.
And rebased on |
@rhssk Can you rebase this branch on master? @jakobandersen @vermeeren It looks like all requested changes were applied. Any further objections to merging this (after rebase is done)? |
Thanks! Merged via rebase (87c6ca1 + parent). |
When something like "doxygennamespace" is used, structures gain
additional line about in which header they are defined.
If the API simply serves as a generic description and no public headers
are provided, this info is redundant. This can be worked around
manually by using "doxygenstruct" directive instead, but this can get
messy quickly with large namespaces. Also, namespace description is
lost.
Allow to hide these lines by setting 'breathe_show_struct_include' to
'False'. The default behavior stays unchanged.
Fixes #57.