Doxygen: Difference between revisions

From miki
Jump to navigation Jump to search
Line 1: Line 1:
== Reference ==
== Reference ==
* https://www.stack.nl/~dimitri/doxygen/manual/
* https://www.doxygen.nl/manual/


== Reference ==
== Reference ==

Revision as of 14:28, 14 July 2020

Reference

Reference

One-liner

Documentation block are usually added before the item to document. Use /** ... */ or ///:

/** Brief description which ends at this dot. Details follow
 *  here.
 */
uint8_t my_int;

/// Brief description which ends at this dot. Details follow
/// here.
uint8_t my_other_int;

Documentation can also be added after members.

int var; /*!< Detailed description after the member */ 

int var; /**< Detailed description after the member */

int var; //!< Detailed description after the member
         //!< 

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

int var; ///< Brief description after the member

Functions

Typical function comment block:

/** 
 * @brief Make coffee.
 * 
 * Brew coffee with the given beans.
 *
 * @param[in]  beans  Pointer to the bag of beans.
 * @param[in]  count Number of beans to take.
 * @param[out] pot   Pointer to the coffee pot, where coffee will be loaded.
 *
 * @return     The quantity of brewed coffee.
 */
int brew_coffee(void * beans, int count, void * pot);

Format

  • Use #variable to create a link to variable, or anything that can be referenced.

/**

* @param[in]  beans  Pointer to the bag of beans.
* @param[in]  count  Number of #beans to take.
*/

</source>

Tips

Link to Main Page

Use /ref index [1]:

/**
 * See \ref index.
 */