Doxygen manual
|
A special documentation block is a C or C++ style comment block with some additional markings, so doxygen knows it is a piece of documentation that needs to end up in the generated documentation. For Python, VHDL, Fortran, and Tcl code there are different comment conventions, which can be found in sections Special documentation blocks in Python, Special documentation blocks in VHDL, Special documentation blocks in Fortran, and Documentation blocks in Tcl respectively.
For each code item there are two (or in some cases three) types of descriptions, which together form the documentation: a brief description and detailed description, both are optional. For methods and functions there is also a third type of description, the so called "in body" description, which consists of the concatenation of all comment blocks found within the body of the method or function.
Having more than one brief or detailed description is allowed (but not recommended, as the order in which the descriptions will appear is not specified).
As the name suggest, a brief description is a short one-liner, whereas the detailed description provides longer, more detailed documentation. An "in body" description can also act as a detailed description or can describe a collection of implementation details. For the HTML output brief descriptions are also use to provide tooltips at places where an item is referenced.
There are several ways to mark a comment block as a detailed description:
You can use the JavaDoc style, which consist of a C-style comment block starting with two *'s, like this:
/** * ... text ... */
or you can use the Qt style and add an exclamation mark (!) after the opening of a C-style comment block, as shown in this example:
/*! * ... text ... */
In both cases the intermediate *'s are optional, so
/*! ... text ... */
is also valid.
A third alternative is to use a block of at least two C++ comment lines, where each line starts with an additional slash or an exclamation mark. Here are examples of the two cases:
/// /// ... text ... ///
or
//! //!... text ... //!
Note that a blank line ends a documentation block in this case.
Some people like to make their comment blocks more visible in the documentation. For this purpose you can use the following:
/********************************************//** * ... text ***********************************************/
(note the 2 slashes to end the normal comment block and start a special comment block).
or
///////////////////////////////////////////////// /// ... text ... /////////////////////////////////////////////////
For the brief description there are also several posibilities:
One could use the \brief command with one of the above comment blocks. This command ends at the end of a paragraph, so the detailed description follows after an empty line.
Here is an example:
/*! \brief Brief description. * Brief description continued. * * Detailed description starts here. */
If JAVADOC_AUTOBRIEF is set to YES
in the configuration file, then using JavaDoc style comment blocks will automatically start a brief description which ends at the first dot followed by a space or new line. Here is an example:
/** Brief description which ends at this dot. Details follow * here. */
The option has the same effect for multi-line special C++ comments:
/// Brief description which ends at this dot. Details follow /// here.
A third option is to use a special C++ style comment which does not span more than one line. Here are two examples:
/// Brief description. /** Detailed description. */
or
//! Brief description. //! Detailed description //! starts here.
Note the blank line in the last example, which is required to separate the brief description from the block containing the detailed description. The JAVADOC_AUTOBRIEF should also be set to NO
for this case.
As you can see doxygen is quite flexible. If you have multiple detailed descriptions, like in the following example:
//! Brief description, which is //! really a detailed description since it spans multiple lines. /*! Another detailed description! */
They will be joined. Note that this is also the case if the descriptions are at different places in the code! In this case the order will depend on the order in which doxygen parses the code.
Here is an example of a documented piece of C++ code using the Qt style:
//! A test class. /*! A more elaborate class description. */ class Test { public: //! An enum. /*! More detailed enum description. */ enum TEnum { TVal1, /*!< Enum value TVal1. */ TVal2, /*!< Enum value TVal2. */ TVal3 /*!< Enum value TVal3. */ } //! Enum pointer. /*! Details. */ *enumPtr, //! Enum variable. /*! Details. */ enumVar; //! A constructor. /*! A more elaborate description of the constructor. */ Test(); //! A destructor. /*! A more elaborate description of the destructor. */ ~Test(); //! A normal member taking two arguments and returning an integer value. /*! \param a an integer argument. \param s a constant character pointer. \return The test results \sa Test(), ~Test(), testMeToo() and publicVar() */ int testMe(int a,const char *s); //! A pure virtual member. /*! \sa testMe() \param c1 the first argument. \param c2 the second argument. */ virtual void testMeToo(char c1,char c2) = 0; //! A public variable. /*! Details. */ int publicVar; //! A function variable. /*! Details. */ int (*handler)(int a,int b); };
The one-line comments contain a brief description, whereas the multi-line comment blocks contain a more detailed description.
The brief descriptions are included in the member overview of a class, namespace or file and are printed using a small italic font (this description can be hidden by setting BRIEF_MEMBER_DESC to NO
in the config file). By default the brief descriptions become the first sentence of the detailed descriptions (but this can be changed by setting the REPEAT_BRIEF tag to NO
). Both the brief and the detailed descriptions are optional for the Qt style.
By default a JavaDoc style documentation block behaves the same way as a Qt style documentation block. This is not according the JavaDoc specification however, where the first sentence of the documentation block is automatically treated as a brief description. To enable this behavior you should set JAVADOC_AUTOBRIEF to YES in the configuration file. If you enable this option and want to put a dot in the middle of a sentence without ending it, you should put a backslash and a space after it. Here is an example:
/** Brief description (e.g.\ using only a few words). Details follow. */
Here is the same piece of code as shown above, this time documented using the JavaDoc style and JAVADOC_AUTOBRIEF set to YES:
/** * A test class. A more elaborate class description. */ class Test { public: /** * An enum. * More detailed enum description. */ enum TEnum { TVal1, /**< enum value TVal1. */ TVal2, /**< enum value TVal2. */ TVal3 /**< enum value TVal3. */ } *enumPtr, /**< enum pointer. Details. */ enumVar; /**< enum variable. Details. */ /** * A constructor. * A more elaborate description of the constructor. */ Test(); /** * A destructor. * A more elaborate description of the destructor. */ ~Test(); /** * a normal member taking two arguments and returning an integer value. * @param a an integer argument. * @param s a constant character pointer. * @see Test() * @see ~Test() * @see testMeToo() * @see publicVar() * @return The test results */ int testMe(int a,const char *s); /** * A pure virtual member. * @see testMe() * @param c1 the first argument. * @param c2 the second argument. */ virtual void testMeToo(char c1,char c2) = 0; /** * a public variable. * Details. */ int publicVar; /** * a function variable. * Details. */ int (*handler)(int a,int b); };
Similarly, if one wishes the first sentence of a Qt style documentation block to automatically be treated as a brief description, one may set QT_AUTOBRIEF to YES in the configuration file.
Unlike most other documentation systems, doxygen also allows you to put the documentation of members (including global functions) in front of the definition. This way the documentation can be placed in the source file instead of the header file. This keeps the header file compact, and allows the implementer of the members more direct access to the documentation. As a compromise the brief description could be placed before the declaration and the detailed description before the member definition.
If you want to document the members of a file, struct, union, class, or enum, and you want to put the documentation for these members inside the compound, it is sometimes desired to place the documentation block after the member instead of before. For this purpose you have to put an additional < marker in the comment block. Note that this also works for the parameters of a function.
Here are some examples:
int var; /*!< Detailed description after the member */
This block can be used to put a Qt style detailed documentation block after a member. Other ways to do the same are:
int var; /**< Detailed description after the member */
or
int var; //!< Detailed description after the member //!<
or
int var; ///< Detailed description after the member ///<
Most often one only wants to put a brief description after a member. This is done as follows:
int var; //!< Brief description after the member
or
int var; ///< Brief description after the member
For functions one can use @param to document the parameters and then use [in]
, [out]
, [in,out]
to document the direction. For inline documentation this is also possible by starting with the direction attribute, e.g.
void foo(int v /**< [in] docs for input parameter v. */);
Note that these blocks have the same structure and meaning as the special comment blocks in the previous section only the < indicates that the member is located in front of the block instead of after the block.
Here is an example of the use of these comment blocks:
/*! A test class */ class Test { public: /** An enum type. * The documentation block cannot be put after the enum! */ enum EnumType { int EVal1, /**< enum value 1 */ int EVal2 /**< enum value 2 */ }; void member(); //!< a member function. protected: int value; /*!< an integer value */ };
\class
) are not allowed inside these comment blocks.So far we have assumed that the documentation blocks are always located in front of the declaration or definition of a file, class or namespace or in front or after one of its members. Although this is often comfortable, there may sometimes be reasons to put the documentation somewhere else. For documenting a file this is even required since there is no such thing as "in front of a file".
Doxygen allows you to put your documentation blocks practically anywhere (the exception is inside the body of a function or inside a normal C style comment block).
The price you pay for not putting the documentation block directly before (or after) an item is the need to put a structural command inside the documentation block, which leads to some duplication of information. So in practice you should avoid the use of structural commands unless other requirements force you to do so.
Structural commands (like all other commands) start with a backslash (\
), or an at-sign (@
) if you prefer JavaDoc style, followed by a command name and one or more parameters. For instance, if you want to document the class Test
in the example above, you could have also put the following documentation block somewhere in the input that is read by doxygen:
/*! \class Test \brief A test class. A more detailed class description. */
Here the special command \class
is used to indicate that the comment block contains documentation for the class Test
. Other structural commands are:
\struct
to document a C-struct. \union
to document a union. \enum
to document an enumeration type. \fn
to document a function. \var
to document a variable or typedef or enum value. \def
to document a #define. \typedef
to document a type definition. \file
to document a file. \namespace
to document a namespace. \package
to document a Java package. \interface
to document an IDL interface. See section Special Commands for detailed information about these and many other commands.
To document a member of a C++ class, you must also document the class itself. The same holds for namespaces. To document a global C function, typedef, enum or preprocessor definition you must first document the file that contains it (usually this will be a header file, because that file contains the information that is exported to other source files).
Let's repeat that, because it is often overlooked: to document global objects (functions, typedefs, enum, macros, etc), you must document the file in which they are defined. In other words, there must at least be a
/*! \file */
or a
/** @file */
line in this file.
Here is an example of a C header named structcmd.h
that is documented using structural commands:
/*! \file structcmd.h \brief A Documented file. Details. */ /*! \def MAX(a,b) \brief A macro that returns the maximum of \a a and \a b. Details. */ /*! \var typedef unsigned int UINT32 \brief A type definition for a . Details. */ /*! \var int errno \brief Contains the last error code. \warning Not thread safe! */ /*! \fn int open(const char *pathname,int flags) \brief Opens a file descriptor. \param pathname The name of the descriptor. \param flags Opening flags. */ /*! \fn int close(int fd) \brief Closes the file descriptor \a fd. \param fd The descriptor to close. */ /*! \fn size_t write(int fd,const char *buf, size_t count) \brief Writes \a count bytes from \a buf to the filedescriptor \a fd. \param fd The descriptor to write to. \param buf The data buffer to write. \param count The number of bytes to write. */ /*! \fn int read(int fd,char *buf,size_t count) \brief Read bytes from a file descriptor. \param fd The descriptor to read from. \param buf The buffer to read into. \param count The number of bytes to read. */ #define MAX(a,b) (((a)>(b))?(a):(b)) typedef unsigned int UINT32; int errno; int open(const char *,int); int close(int); size_t write(int,const char *, size_t); int read(int,char *,size_t);
Because each comment block in the example above contains a structural command, all the comment blocks could be moved to another location or input file (the source file for instance), without affecting the generated documentation. The disadvantage of this approach is that prototypes are duplicated, so all changes have to be made twice! Because of this you should first consider if this is really needed, and avoid structural commands if possible. I often receive examples that contain \fn command in comment blocks which are place in front of a function. This is clearly a case where the \fn command is redundant and will only lead to problems.
For Python there is a standard way of documenting the code using so called documentation strings. Such strings are stored in __doc__
and can be retrieved at runtime. Doxygen will extract such comments and assume they have to be represented in a preformatted way.
"""@package docstring Documentation for this module. More details. """ def func(): """Documentation for a function. More details. """ pass class PyClass: """Documentation for a class. More details. """ def __init__(self): """The constructor.""" self._memVar = 0; def PyMethod(self): """Documentation for a method.""" pass
Note that in this case none of doxygen's special commands are supported.
There is also another way to document Python code using comments that start with "##". These type of comment blocks are more in line with the way documentation blocks work for the other languages supported by doxygen and this also allows the use of special commands.
Here is the same example again but now using doxygen style comments:
## @package pyexample # Documentation for this module. # # More details. ## Documentation for a function. # # More details. def func(): pass ## Documentation for a class. # # More details. class PyClass: ## The constructor. def __init__(self): self._memVar = 0; ## Documentation for a method. # @param self The object pointer. def PyMethod(self): pass ## A class variable. classVar = 0; ## @var _memVar # a member variable
Since python looks more like Java than like C or C++, you should set OPTIMIZE_OUTPUT_JAVA to YES
in the config file.
For VHDL a comment normally start with "--". Doxygen will extract comments starting with "--!". There are only two types of comment blocks in VHDL; a one line --! comment representing a brief description, and a multi-line --! comment (where the --! prefix is repeated for each line) representing a detailed description.
Comments are always located in front of the item that is being documented with one exception: for ports the comment can also be after the item and is then treated as a brief description for the port.
Here is an example VHDL file with doxygen comments:
------------------------------------------------------- --! @file --! @brief 2:1 Mux using with-select ------------------------------------------------------- --! Use standard library library ieee; --! Use logic elements use ieee.std_logic_1164.all; --! Mux entity brief description --! Detailed description of this --! mux design element. entity mux_using_with is port ( din_0 : in std_logic; --! Mux first input din_1 : in std_logic; --! Mux Second input sel : in std_logic; --! Select input mux_out : out std_logic --! Mux output ); end entity; --! @brief Architure definition of the MUX --! @details More details about this mux element. architecture behavior of mux_using_with is begin with (sel) select mux_out <= din_0 when '0', din_1 when others; end architecture;
To get proper looking output you need to set OPTIMIZE_OUTPUT_VHDL to YES
in the config file. This will also affect a number of other settings. When they were not already set correctly doxygen will produce a warning telling which settings where overruled.
When using doxygen for Fortran code you should set OPTIMIZE_FOR_FORTRAN to YES
.
For Fortran "!>" or "!<" starts a comment and "!!" or "!>" can be used to continuate a one line comment into a multi-line comment.
Here is an example of a documented Fortran subroutine:
!> Build the restriction matrix for the aggregation !! method. !! @param aggr information about the aggregates !! @todo Handle special case subroutine IntRestBuild(A,aggr,Restrict,A_ghost) implicit none Type(SpMtx), intent(in) :: A !< our fine level matrix Type(Aggrs), intent(in) :: aggr Type(SpMtx), intent(out) :: Restrict !< Our restriction matrix
As a alternative you can also use comments in fixed format code:
C> Function comment C> another line of comment function A(i) C> input parameter integer i end function A
Doxygen documentation can be included in normal Tcl comments.
To start a new documentation block start a line with ##
(two hashes). All following comment lines and continuation lines will be added to this block. The block ends with a line not starting with a #
(hash sign).
A brief documentation can be added with ;#< (semicolon, hash and lower then sign). The brief documentation also ends at a line not starting with a
#
(hash sign).
Inside doxygen comment blocks all normal doxygen markings are supported. The only expections are described in the following two paragraphs.
If a doxygen comment block ends with a line containing only #\code
or #@code
all code until a line only containing #\endcode
or #@endcode
is added to the generated documentation as code block.
If a doxygen comment block ends with a line containing only #\verbatim
or #@verbatim
all code until a line only containing #\endverbatim
or #@endverbatim
is added verbatim to the generated documentation.
To detect namespaces, classes, functions and variables the following Tcl commands are recognized. Documentation blocks can be put on the lines before the command.
namespace eval ..
Namespace proc ..
Function variable ..
Variable common ..
Common variable itcl::class ..
Class itcl::body ..
Class method body definition oo::class create ..
Class oo::define ..
OO Class definition method ..
Class method definitions constructor ..
Class constructor destructor ..
Class destructor public ..
Set protection level protected ..
Set protection level private ..
Set protection level Following is a example using doxygen style comments:
00001 ## \file tclexample.tcl 00002 # File documentation. 00003 #\verbatim 00004 00005 # Startup code:\ 00006 exec tclsh "$0" "$@" 00007 #\endverbatim 00008 ## Documented namespace \c ns . 00009 # The code is inserted here: 00010 #\code 00011 namespace eval ns { 00012 ## Documented proc \c ns_proc . 00013 # param[in] arg some argument 00014 proc ns_proc {arg} {} 00015 ## Documented var \c ns_var . 00016 # Some documentation. 00017 variable ns_var 00018 ## Documented itcl class \c itcl_class . 00019 itcl::class itcl_class { 00020 ## Create object. 00021 constructor {args} {eval $args} 00022 ## Destroy object. 00023 destructor {exit} 00024 ## Documented itcl method \c itcl_method_x . 00025 # param[in] arg Argument 00026 private method itcl_method_x {arg}{} 00027 ## Documented itcl method \c itcl_method_y . 00028 # param[in] arg Argument 00029 protected method itcl_method_y {arg} {} 00030 ## Documented itcl method \c itcl_method_z . 00031 # param[in] arg Argument 00032 public method itcl_method_z {arg} {} 00033 ## Documented common itcl var \c itcl_Var . 00034 common itcl_Var 00035 ## \protectedsection 00036 00037 variable itcl_var1;#< Documented itcl var \c itcl_var1 . 00038 variable itcl_var2} 00039 ## Documented oo class \c oo_class . 00040 oo::class create oo_class { 00041 ## Create object. 00042 # Configure with args 00043 constructor {args} {eval $args} 00044 ## Destroy object. 00045 # Exit. 00046 destructor {exit} 00047 ## Documented oo var \c oo_var . 00048 # Defined inside class 00049 variable oo_var 00050 ## \private Documented oo method \c oo_method_x . 00051 # param[in] arg Argument 00052 method oo_method_x {arg} {} 00053 ## \protected Documented oo method \c oo_method_y . 00054 # param[in] arg Argument 00055 method oo_method_y {arg} {} 00056 ## \public Documented oo method \c oo_method_z . 00057 # param[in] arg Argument 00058 method oo_method_z {arg} {} 00059 } 00060 } 00061 #\endcode 00062 00063 itcl::body ::ns::itcl_class::itcl_method_x {argx} { 00064 puts "$argx OK" 00065 } 00066 00067 oo::define ns::oo_class { 00068 ## \public Outside defined variable \c oo_var_out . 00069 # Inside oo_class 00070 variable oo_var_out 00071 } 00072 00073 ## Documented global proc \c glob_proc . 00074 # param[in] arg Argument 00075 proc glob_proc {arg} {puts $arg} 00076 00077 variable glob_var;#< Documented global var \c glob_var\ 00078 with newline 00079 #< and continued line 00080 00081 # end of file