Doxygen | |
Developer: | Dimitri van Heesch |
Released: | [1] |
Latest Release Version: | |
Programming Language: | C++ |
Operating System: | Cross-platform |
Genre: | Documentation generator |
License: | GPLv2 |
Doxygen [2] is a documentation generator[3] [4] [5] [6] and static analysis tool for software source trees. When used as a documentation generator, Doxygen extracts information from specially-formatted comments within the code. When used for analysis, Doxygen uses its parse tree to generate diagrams and charts of the code structure. Doxygen can cross reference documentation and code, so that the reader of a document can easily refer to the actual code.
Doxygen is free software, released under the terms of the GNU General Public License version2 (GPLv2).
Like Javadoc, Doxygen extracts documentation from source file comments. In addition to the Javadoc syntax, Doxygen supports the documentation tags used in the Qt toolkit and can generate output in HyperText Markup Language (HTML) as well as in Microsoft Compiled HTML Help (CHM), Rich Text Format (RTF), Portable Document Format (PDF), LaTeX, PostScript or man pages.
Programming languages supported by Doxygen include C,[7] C++, C#, D, Fortran, IDL, Java, Objective-C,[8] Perl,[9] PHP,[10] Python,[11] [12] and VHDL.[10] Other languages can be supported with additional code.
Doxygen runs on most Unix-like systems, macOS, and Windows.
The first version of Doxygen borrowed code from an early version of DOC++, developed by Roland Wunderling and Malte Zöckler at Zuse Institute Berlin. Later, the Doxygen code was rewritten by Dimitri van Heesch.
Doxygen has built-in support to generate inheritance diagrams for C++ classes. For more advanced diagrams and graphs, Doxygen can use the "dot" tool from Graphviz.[13]
The generic syntax of documentation comments is to start a comment with an extra asterisk after the leading comment delimiter '/*':
@param Description of method's or function's input parameter@param ...@return Description of the return value
Many programmers like to mark the start of each line with space-asterisk-space, as follows, but that is not necessary.
Many programmers avoid using C-style comments and instead use C++ style single line comments. Doxygen accepts comments with additional slash as Doxygen comments.
/** * @file * @author John Doe
class Time ;
An alternative approach for documenting parameters is shown below. It will produce the same documentation.
Richer markup is also possible. For instance, add equations using LaTeX commands:
The Doxygen sources are currently hosted at GitHub, where the main developer, Dimitri van Heesch, contributes under the user name "doxygen".[14] Doxygen is written in C++, and consists of around 300,000 source lines of code. For lexical analysis, the standard tool Lex (or its replacement Flex) is run via approximately 35,000 lines of lex script. The parsing tool Yacc (or its replacement Bison) is also used, but only for minor tasks; the bulk of language parsing is done by native C++ code. The build process is based on CMake and also involves some Python scripts.