gitextract_1kiyib7g/ ├── .github/ │ ├── FUNDING.yml │ ├── dependabot.yml │ └── workflows/ │ ├── cache_doxygen.yml │ ├── create-release.yml │ ├── documentation.yml │ ├── lint.yml │ └── unit_tests.yml ├── .gitignore ├── .readthedocs.yaml ├── .ruff.toml ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── CONTRIBUTORS.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── breathe/ │ ├── README.rst │ ├── __init__.py │ ├── apidoc.py │ ├── cpp_util.py │ ├── directives/ │ │ ├── __init__.py │ │ ├── class_like.py │ │ ├── content_block.py │ │ ├── file.py │ │ ├── function.py │ │ ├── index.py │ │ ├── item.py │ │ └── setup.py │ ├── exception.py │ ├── file_state_cache.py │ ├── filetypes.py │ ├── finder/ │ │ ├── __init__.py │ │ ├── compound.py │ │ ├── factory.py │ │ └── index.py │ ├── parser.py │ ├── path_handler.py │ ├── process.py │ ├── project.py │ └── renderer/ │ ├── __init__.py │ ├── filter.py │ ├── mask.py │ ├── sphinxrenderer.py │ └── target.py ├── breathe-apidoc.py ├── documentation/ │ ├── .gitignore │ ├── Makefile │ ├── compare │ ├── environment.yaml │ ├── make.bat │ └── source/ │ ├── _static/ │ │ └── breathe.css │ ├── autofile.rst │ ├── autoindex.rst │ ├── class.rst │ ├── code/ │ │ ├── groups.h │ │ ├── namespaces.h │ │ ├── nested_list_1.h │ │ ├── nested_list_2.h │ │ ├── nested_list_3.h │ │ ├── nested_list_4.h │ │ ├── nested_list_5.h │ │ └── nutshell.h │ ├── codeblocks.rst │ ├── codeguide.rst │ ├── concept.rst │ ├── conf.py │ ├── contributing.rst │ ├── credits.rst │ ├── customcss.rst │ ├── define.rst │ ├── differences.rst │ ├── directives.rst │ ├── domains.rst │ ├── dot_graphs.rst │ ├── doxygen.rst │ ├── embeddedrst.rst │ ├── enum.rst │ ├── enumvalue.rst │ ├── file.rst │ ├── function.rst │ ├── group.rst │ ├── groups.rst │ ├── index.rst │ ├── inline.rst │ ├── latexmath.rst │ ├── lists.rst │ ├── markups.rst │ ├── members.rst │ ├── namespace.rst │ ├── page.rst │ ├── quickstart.rst │ ├── readthedocs.rst │ ├── specific.rst │ ├── spelling_wordlist.txt │ ├── struct.rst │ ├── tables.rst │ ├── template.rst │ ├── testpages.rst │ ├── tinyxml.rst │ ├── typedef.rst │ ├── union.rst │ └── variable.rst ├── examples/ │ ├── doxygen/ │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── afterdoc.cfg │ │ ├── afterdoc.h │ │ ├── author.cfg │ │ ├── author.cpp │ │ ├── autolink.cfg │ │ ├── autolink.cpp │ │ ├── class.cfg │ │ ├── class.h │ │ ├── concept.cfg │ │ ├── concept.h │ │ ├── define.cfg │ │ ├── define.h │ │ ├── diagrams.cfg │ │ ├── diagrams_a.h │ │ ├── diagrams_b.h │ │ ├── diagrams_c.h │ │ ├── diagrams_d.h │ │ ├── diagrams_e.h │ │ ├── docstring.cfg │ │ ├── docstring.py │ │ ├── enum.cfg │ │ ├── enum.h │ │ ├── example.cfg │ │ ├── example.cpp │ │ ├── example_test.cpp │ │ ├── file.cfg │ │ ├── file.h │ │ ├── func.cfg │ │ ├── func.h │ │ ├── group.cfg │ │ ├── group.cpp │ │ ├── include.cfg │ │ ├── include.cpp │ │ ├── interface.cfg │ │ ├── interface.h │ │ ├── jdstyle.cfg │ │ ├── jdstyle.cpp │ │ ├── make.bat │ │ ├── manual.c │ │ ├── manual.cfg │ │ ├── memgrp.cfg │ │ ├── memgrp.cpp │ │ ├── overload.cfg │ │ ├── overload.cpp │ │ ├── page.cfg │ │ ├── page.doc │ │ ├── par.cfg │ │ ├── par.cpp │ │ ├── parblock.cfg │ │ ├── parblock.cpp │ │ ├── pyexample.cfg │ │ ├── pyexample.py │ │ ├── qtstyle.cfg │ │ ├── qtstyle.cpp │ │ ├── relates.cfg │ │ ├── relates.cpp │ │ ├── restypedef.cfg │ │ ├── restypedef.cpp │ │ ├── structcmd.cfg │ │ ├── structcmd.h │ │ ├── tag.cfg │ │ ├── tag.cpp │ │ ├── templ.cfg │ │ └── templ.cpp │ └── specific/ │ ├── .gitignore │ ├── Makefile │ ├── alias.cfg │ ├── alias.h │ ├── array.cfg │ ├── array.h │ ├── auto.cfg │ ├── auto_class.h │ ├── auto_function.h │ ├── c_enum.cfg │ ├── c_enum.h │ ├── c_file.cfg │ ├── c_file.h │ ├── c_macro.cfg │ ├── c_macro.h │ ├── c_struct.cfg │ ├── c_struct.h │ ├── c_typedef.cfg │ ├── c_typedef.h │ ├── c_union.cfg │ ├── c_union.h │ ├── class.cfg │ ├── class.cpp │ ├── class.h │ ├── code_blocks.cfg │ ├── code_blocks.h │ ├── cpp_anon.cfg │ ├── cpp_anon.h │ ├── cpp_concept.cfg │ ├── cpp_concept.h │ ├── cpp_constexpr_hax.cfg │ ├── cpp_constexpr_hax.h │ ├── cpp_enum.cfg │ ├── cpp_enum.h │ ├── cpp_friendclass.cfg │ ├── cpp_friendclass.h │ ├── cpp_function.cfg │ ├── cpp_function.h │ ├── cpp_function_lookup.cfg │ ├── cpp_function_lookup.h │ ├── cpp_inherited_members.cfg │ ├── cpp_inherited_members.h │ ├── cpp_ns_template_specialization.cfg │ ├── cpp_ns_template_specialization.h │ ├── cpp_trailing_return_type.cfg │ ├── cpp_trailing_return_type.h │ ├── cpp_union.cfg │ ├── cpp_union.h │ ├── decl_impl.cfg │ ├── decl_impl.cpp │ ├── decl_impl.h │ ├── define.cfg │ ├── define.h │ ├── dot_graphs.cfg │ ├── dot_graphs.h │ ├── dotfile.dot │ ├── enum.cfg │ ├── enum.h │ ├── fixedwidthfont.cfg │ ├── fixedwidthfont.h │ ├── functionOverload.cfg │ ├── functionOverload.h │ ├── group.cfg │ ├── group.h │ ├── headerfile.cfg │ ├── headerfile.h │ ├── headings.cfg │ ├── headings.h │ ├── image.cfg │ ├── image.h │ ├── inheritance.cfg │ ├── inheritance.h │ ├── inline.cfg │ ├── inline.h │ ├── interface.cfg │ ├── interface.h │ ├── latexmath.cfg │ ├── latexmath.h │ ├── links.cfg │ ├── links.h │ ├── lists.cfg │ ├── lists.h │ ├── make.bat │ ├── membergroups.cfg │ ├── membergroups.h │ ├── members.cfg │ ├── members.h │ ├── multifile/ │ │ ├── one/ │ │ │ └── Util.h │ │ └── two/ │ │ └── Util.h │ ├── multifile.cfg │ ├── name.cfg │ ├── name.h │ ├── namespacefile.cfg │ ├── namespacefile.h │ ├── nutshell.cfg │ ├── nutshell.h │ ├── parameters.cfg │ ├── parameters.h │ ├── programlisting.cfg │ ├── programlisting.h │ ├── programlistinginclude.txt │ ├── qtsignalsandslots.cfg │ ├── qtsignalsandslots.h │ ├── rst.cfg │ ├── rst.h │ ├── simplesect.cfg │ ├── simplesect.h │ ├── struct.cfg │ ├── struct.h │ ├── struct_function.cfg │ ├── struct_function.h │ ├── tables.cfg │ ├── tables.h │ ├── template_class.cfg │ ├── template_class.h │ ├── template_class_non_type.cfg │ ├── template_class_non_type.h │ ├── template_function.cfg │ ├── template_function.h │ ├── template_specialisation.cfg │ ├── template_specialisation.h │ ├── template_type_alias.cfg │ ├── template_type_alias.h │ ├── typedef.cfg │ ├── typedef.h │ ├── union.cfg │ ├── union.h │ ├── userdefined.cfg │ ├── userdefined.h │ ├── using_in_ns.cfg │ ├── using_in_ns.h │ ├── xrefsect.cfg │ └── xrefsect.h ├── make.bat ├── pyproject.toml ├── scripts/ │ ├── doxygen_cache.py │ └── generate_tests_results.py ├── tests/ │ ├── conftest.py │ ├── data/ │ │ ├── arange.xml │ │ ├── auto/ │ │ │ ├── auto_class.h │ │ │ ├── auto_function.h │ │ │ ├── compare.xml │ │ │ └── input.rst │ │ ├── classSample.xml │ │ ├── docutils.css │ │ ├── ellipsis.xml │ │ ├── examples/ │ │ │ ├── README.rst │ │ │ ├── doxyfile_template │ │ │ ├── test_alias/ │ │ │ │ ├── alias.h │ │ │ │ ├── compare.xml │ │ │ │ ├── extra_dox_opts.txt │ │ │ │ └── input.rst │ │ │ ├── test_array/ │ │ │ │ ├── array.h │ │ │ │ ├── compare.xml │ │ │ │ └── input.rst │ │ │ ├── test_c_enum/ │ │ │ │ ├── c_enum.h │ │ │ │ ├── compare.xml │ │ │ │ └── input.rst │ │ │ ├── test_c_file/ │ │ │ │ ├── c_file.h │ │ │ │ ├── compare.xml │ │ │ │ └── input.rst │ │ │ ├── test_class/ │ │ │ │ ├── class.cpp │ │ │ │ ├── class.h │ │ │ │ ├── compare.xml │ │ │ │ └── input.rst │ │ │ ├── test_code_blocks/ │ │ │ │ ├── code_blocks.h │ │ │ │ ├── compare.xml │ │ │ │ └── input.rst │ │ │ ├── test_cpp_concept/ │ │ │ │ ├── compare.xml │ │ │ │ ├── cpp_concept.h │ │ │ │ └── input.rst │ │ │ ├── test_cpp_enum/ │ │ │ │ ├── compare.xml │ │ │ │ ├── cpp_enum.h │ │ │ │ └── input.rst │ │ │ ├── test_cpp_friendclass/ │ │ │ │ ├── compare.xml │ │ │ │ ├── cpp_friendclass.h │ │ │ │ └── input.rst │ │ │ ├── test_cpp_function/ │ │ │ │ ├── compare.xml │ │ │ │ ├── cpp_function.h │ │ │ │ └── input.rst │ │ │ ├── test_cpp_inherited_members/ │ │ │ │ ├── compare.xml │ │ │ │ ├── cpp_inherited_members.h │ │ │ │ ├── extra_dox_opts.txt │ │ │ │ └── input.rst │ │ │ ├── test_cpp_trailing_return_type/ │ │ │ │ ├── compare-1.11.0.xml │ │ │ │ ├── compare.xml │ │ │ │ ├── cpp_trailing_return_type.h │ │ │ │ └── input.rst │ │ │ ├── test_define/ │ │ │ │ ├── compare.xml │ │ │ │ ├── define.h │ │ │ │ └── input.rst │ │ │ ├── test_diagrams/ │ │ │ │ ├── compare.xml │ │ │ │ ├── diagrams_a.h │ │ │ │ ├── diagrams_b.h │ │ │ │ ├── diagrams_c.h │ │ │ │ ├── diagrams_d.h │ │ │ │ ├── diagrams_e.h │ │ │ │ ├── extra_dox_opts.txt │ │ │ │ └── input.rst │ │ │ ├── test_dot_graphs/ │ │ │ │ ├── compare.xml │ │ │ │ ├── dot_graphs.h │ │ │ │ ├── dotfile.dot │ │ │ │ └── input.rst │ │ │ ├── test_group/ │ │ │ │ ├── compare-1.10.0.xml │ │ │ │ ├── compare.xml │ │ │ │ ├── group.h │ │ │ │ └── input.rst │ │ │ ├── test_group_content_only/ │ │ │ │ ├── compare.xml │ │ │ │ ├── group_content_only.hpp │ │ │ │ └── input.rst │ │ │ ├── test_group_member_ref/ │ │ │ │ ├── compare.xml │ │ │ │ ├── group.cpp │ │ │ │ └── input.rst │ │ │ ├── test_headings/ │ │ │ │ ├── compare.xml │ │ │ │ ├── extra_dox_opts.txt │ │ │ │ ├── headings.h │ │ │ │ └── input.rst │ │ │ ├── test_html_entities/ │ │ │ │ ├── compare.xml │ │ │ │ ├── entities.h │ │ │ │ └── input.rst │ │ │ ├── test_image/ │ │ │ │ ├── compare.xml │ │ │ │ ├── image.h │ │ │ │ └── input.rst │ │ │ ├── test_inheritance/ │ │ │ │ ├── compare.xml │ │ │ │ ├── inheritance.h │ │ │ │ └── input.rst │ │ │ ├── test_inline/ │ │ │ │ ├── compare.xml │ │ │ │ ├── inline.h │ │ │ │ └── input.rst │ │ │ ├── test_latexmath/ │ │ │ │ ├── compare.xml │ │ │ │ ├── input.rst │ │ │ │ └── latexmath.h │ │ │ ├── test_links/ │ │ │ │ ├── compare.xml │ │ │ │ ├── input.rst │ │ │ │ └── links.h │ │ │ ├── test_lists/ │ │ │ │ ├── compare.xml │ │ │ │ ├── input.rst │ │ │ │ └── lists.h │ │ │ ├── test_membergroups/ │ │ │ │ ├── compare.xml │ │ │ │ ├── input.rst │ │ │ │ └── membergroups.h │ │ │ ├── test_param_dirs/ │ │ │ │ ├── compare.xml │ │ │ │ ├── input.rst │ │ │ │ └── param_dirs.h │ │ │ ├── test_qtsignalsandslots/ │ │ │ │ ├── compare.xml │ │ │ │ ├── input.rst │ │ │ │ └── qtsignalsandslots.h │ │ │ ├── test_rst/ │ │ │ │ ├── compare.xml │ │ │ │ ├── input.rst │ │ │ │ └── rst.h │ │ │ ├── test_simplesect/ │ │ │ │ ├── compare.xml │ │ │ │ ├── input.rst │ │ │ │ └── simplesect.h │ │ │ ├── test_tables/ │ │ │ │ ├── compare.xml │ │ │ │ ├── input.rst │ │ │ │ └── tables.h │ │ │ ├── test_template_class_non_type/ │ │ │ │ ├── compare.xml │ │ │ │ ├── input.rst │ │ │ │ └── template_class_non_type.h │ │ │ ├── test_template_function/ │ │ │ │ ├── compare.xml │ │ │ │ ├── input.rst │ │ │ │ └── template_function.h │ │ │ ├── test_template_type_alias/ │ │ │ │ ├── compare.xml │ │ │ │ ├── input.rst │ │ │ │ └── template_type_alias.h │ │ │ ├── test_union/ │ │ │ │ ├── compare.xml │ │ │ │ ├── input.rst │ │ │ │ └── union.h │ │ │ ├── test_userdefined/ │ │ │ │ ├── compare.xml │ │ │ │ ├── input.rst │ │ │ │ └── userdefined.h │ │ │ └── test_xrefsect/ │ │ │ ├── compare.xml │ │ │ ├── extra_dox_opts.txt │ │ │ ├── input.rst │ │ │ └── xrefsect.h │ │ └── multi_project/ │ │ ├── A/ │ │ │ └── stuff.h │ │ ├── B/ │ │ │ └── stuff.h │ │ ├── C/ │ │ │ └── stuff.h │ │ ├── compare.xml │ │ └── input.rst │ ├── runtests.sh │ ├── test_examples.py │ ├── test_filters.py │ ├── test_parser.py │ ├── test_renderer.py │ ├── test_utils.py │ └── warnings/ │ ├── Makefile │ ├── make.bat │ └── source/ │ ├── class.rst │ ├── conf.py │ ├── define.rst │ ├── function.rst │ ├── group.rst │ └── index.rst └── xml_parser_generator/ ├── make_parser.py ├── module_template.py.in ├── schema.json ├── setuptools_builder.py └── stubs_template.pyi.in