Doxygen: Difference between revisions

From miki
Jump to navigation Jump to search
Line 38: Line 38:


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

=== Functions ===
Typical function comment block:
<source lang=c>
/**
* @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);
</source>
</source>



Revision as of 08:08, 18 July 2018

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);

Tips

Link to Main Page

Use /ref index [1]:

/**
 * See \ref index.
 */