diff --git a/documentation/source/directives.rst b/documentation/source/directives.rst index 18e0ab58..c6872ca0 100644 --- a/documentation/source/directives.rst +++ b/documentation/source/directives.rst @@ -313,6 +313,25 @@ and additionally the ``members``, ``protected-members``, ``private-members`` and Checkout the :ref:`example ` to see it in action. +doxygeninterface +~~~~~~~~~~~~~~~~ + +This directive generates the appropriate output for a single interface (specially-used +class). It behaves the same as the doxygenclass directive. + +:: + + .. doxygeninterface:: + :project: ... + :path: ... + :members: + :protected-members: + :private-members: + :undoc-members: + :outline: + :no-link: + + doxygentypedef ~~~~~~~~~~~~~~