Top "Doxygen" questions

Doxygen is a multilanguage documentation generation application for C++, C, Java, Objective-C, Python, IDL, Fortran, VHDL, PHP and C# that supports a wide variety of output formats including RTF, HTML, XML and PDF.

How to include Doxygen method description in Xcode's autocomplete popup?

Using Xcode , I want to have the Doxygen description of my method below the autocomplete option, like alloc: When writing, …

objective-c xcode autocomplete doxygen
how do i make doxygen ignore function-like macros when building the documentation?

I need to document a project with doxygen, but also need to ignore some macros, which I use for readability …

doxygen preprocessor-directive
doxygen comment multiple variables at once

If I have the following: /** * @brief (x,y,z) points for block */ int x, y, z; It will only generate …

c++ c variables doxygen comments
Create "Quick Help" Entry in Xcode

How do I create quick help entries in Xcode for my own code? I just want it as a coding …

objective-c xcode doxygen comments code-documentation
Generate documentation as markdown files using doxygen

I know that it is possible to use markdown inside comments and doxygen can understand it. But I need to …

c++ markdown doxygen
Doxygen, too heavy to maintain?

I am currently starting using doxygen to document my source code. I have notice that the syntax is very heavy, …

c++ c documentation performance doxygen
Is there an @inheritDoc equivalent in Doxygen?

I know Javadoc will compile {@inheritDoc}, but what's the Doxygen way to do this?

javadoc doxygen documentation-generation
Doxygen warning: no uniquely matching class member found for

I'm using Doxygen for a C++ project. When I'm building the html doc, I get the following error: C:/Amir/…

c++ documentation doxygen
How to generate inline code section with Doxygen?

My narration has code snippets, e.g., ::SomePlatformAPI() that are not part of my code base and Doxygen warns that …

documentation doxygen
Doxygen won't find headers in subdir

I'm documenting a C++ library's header files with Doxygen. In the Doxyfile, I defined INPUT = include/ in the hopes that …

c++ header doxygen