breathe
breathe copied to clipboard
ReStructuredText and Sphinx bridge to Doxygen
Here's an example XML output ``` bool bool HelperFunctions::pt_sort::operator() (const xAOD::IParticle &lhs, const xAOD::IParticle &rhs) operator() const xAOD::IParticle & lhs const xAOD::IParticle & rhs ``` Doxygen's generated HTML gives ```...
Originated from https://github.com/michaeljones/breathe/pull/637#discussion_r576195124. For example the `:members:` option of `doxygenclass` can be provided to specify members to render. In `breathe/renderer/filter.py` one can find: ```python members = set(['%s%s' % (prefix, x.strip())...
Hi! Great work on the library!! I have a question. I want to have two sections in my docs, one which gives the details per function, and one which gives...
I might be doing something wrong, but could it be that the changes from #623 (related to #613) have made forward declarations of friend functions ambiguous? Our code (in pybind/pybind11#2828)...
A bit of a mouthful! Till now I've been referring to C unions member using the `:macro:` role, es: *a.h* ```c /** * Lorem ipsum */ typedef enum VTDirection {...
All of my overloaded functions cause multiple duplicate declaration warnings per `doxygenfunction`. Everything seems to be present in the generated docs. Links and index are generated correctly as far as...
I can confirm that this worked in 4.16, and in fact up through commit c6857daea, but fails starting with commit 2fbd5dede4 ("Scoped rendering of functions"). The situation is that I...
This will probably allow apidoc builds and manual directives to be mixed in the resulting sphinx build without triggering duplicate declaration warnings.
mp-units
Hi, I am the author of [mp-units](https://github.com/mpusz/units) which is a Physical Units Library and is targeting C++23 or C++23 and uses C++20 features. Following `fmtlib` example I would like to...
I'm not sure if this is a breathe problem or a doxygen one. When the Doxyfile sets `INLINE_INHERITED_MEMBERS` to `YES`, each time a base class member is documented within a...