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.

doxygen and graphviz doesn't generate map files

I am trying Graphviz and doxygen on a rather large C++ library to generate UML. It generates the .dot files …

uml doxygen graphviz dot
Change doxygen comment style in Eclipse

Does anyone know how to edit the style used for Doxygen comments in Eclipse CDT? In other words type /** and …

eclipse doxygen eclipse-cdt
Can I have my GitHub Pages index.html in a subfolder of the repository?

I'm trying to use GitHub pages to host a Doxygen site. Ideally, I'd like to be able to push the …

github doxygen github-pages
Objective-C Documentation Generators: HeaderDoc vs. Doxygen vs. AppleDoc

I need to implement a documentation generation solution for my workplace and have narrowed it down to the three mentioned …

doxygen documentation-generation headerdoc appledoc
Specify Doxygen parameters through command line

Well I am creating a script to automatically generate documentation for my projects with Doxygen, which seems like an awesome …

bash doxygen
Use of doxygen's \link command

I have an external HTML file I'd like to have linked form either my doxygen "Related Pages" tab or the …

doxygen doxywizard
Doxygen @link to a URL doesn't generate the link correctly

I have added this to a class comment: @link http://www.google.com Google @endlink However, when I generate documentation …

doxygen
Doxygen isn't generating documentation for source files

First time using Doxygen here. Using the Doxygen Wizard, and I'm pretty sure I'm setting all the directories and everything …

doxygen doxywizard
Doxygen not documenting main function in main.cpp

I have a main.cpp that contains a struct, some global constants and a main function. I ran doxygen and …

c++ doxygen main
C++ private class member variables don't appear in the documentation

Class is documented as follows: /** * @brief Number representation */ class CNumber : public CElem { /** @brief Holds true for negative values */ bool neg; ... …

c++ doxygen