User Tools

Site Tools


doxygen

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
doxygen [2018/05/02 20:25] jefersondoxygen [2018/06/25 19:22] (current) jeferson
Line 17: Line 17:
 1. C-style comment block 1. C-style comment block
  
-<code>/**+<code> 
 +/**
  * ... text ...  * ... text ...
  */  */
Line 24: Line 25:
 2. Qt style 2. Qt style
  
-<code>/*!+<code> 
 +/*!
  * ... text ...  * ... text ...
  */  */
Line 31: Line 33:
 3. C++-like comment lines 3. C++-like comment lines
  
-<code>///+<code> 
 +///
 /// ... text ... /// ... text ...
 /// ///
Line 38: Line 41:
 or or
  
-<code>//!+<code> 
 +//!
 //!... text ... //!... text ...
 //! //!
Line 47: Line 51:
 1. 1.
  
-<code>/*! \brief Brief description.+<code> 
 +/*! brief Brief description.
    Brief description continued.    Brief description continued.
  *  *
Line 56: Line 61:
 2. 2.
  
-<code>/// Brief description which ends at this dot. Details follow+<code> 
 +/// Brief description which ends at this dot. Details follow
 /// here. /// here.
 </code> </code>
Line 62: Line 68:
 3. 3.
  
-<code>/// Brief description.+<code> 
 +/// Brief description.
 /** Detailed description. */ /** Detailed description. */
 </code> </code>
Line 68: Line 75:
 or or
  
-<code>//! Brief description.+<code> 
 +//! Brief description.
  
 //! Detailed description //! Detailed description
 //! starts here. //! starts here.
 </code> </code>
 +
 +==== Creating the documentation: ====
 +
 +The documentation can be created by many ways with doxygen. The most general is setting a Doxyfile, i. e., a file which describes the settings to be used by the doxygen documentation system. It can be done by accessing the program repository and typing the command
 +
 +<code>
 +doxygen -g Doxyfile
 +</code>
 +
 +A standard Doxyfile is created and can be personalized with many options.
 +
 +To create the documentation file run
 +
 +<code>
 +doxygen Doxyfile
 +</code>
 +
 +If GENERATE_HTML is set to YES, doxygen will generate HTML output. Then open the index.html file to view the code documentation. For more information about doxygen and personalization issues click [[http://www.stack.nl/~dimitri/doxygen/manual/index.html|here]].
 +
 +You can download the current Doxyfile used by the research group {{:doxyfile.txt|here}}.
  
  
doxygen.1525292743.txt.gz · Last modified: by jeferson