Doxygen: Difference between revisions

From Octave
Jump to navigation Jump to search
(Added information about the preferred style used in Doxygen)
(→‎Doxygen Style Guide: Disallowed →‎! ...: as valid doxygen comments)
Line 29: Line 29:
Doxygen allows for a variety of commenting styles. In order to maintain uniformity across the entire project the following rules should be applied:
Doxygen allows for a variety of commenting styles. In order to maintain uniformity across the entire project the following rules should be applied:


* For short Doxygen comments use {{codeline|//!}}
* For Doxygen comments use only {{codeline|//!}} and NOT {{codeline|/*! ... */}}
* For longer comments use {{codeline|/*! ... */}}
* For longer comments do not add {{codeline|*}} before each line
* Use {{codeline|@}} for any Doxygen Special Commands
* Use {{codeline|@}} for any Doxygen Special Commands


Line 37: Line 35:


<pre>
<pre>
//! Short Comment.
//! Comment with special command and syntax highlighting:
/*!
    Longer comment with special command and syntax highlighting:


    @code{.cc}
//! @code{.cc}
    double v = 1.0;
//! double v = 1.0;
    @endcode
//! @endcode
*/
</pre>
</pre>
For actual use example look at [http://hg.savannah.gnu.org/hgweb/octave/file/1327ea4f5a93/liboctave/array/Array.h#l46 liboctave/array/Array.h]


[[Category:Development]]
[[Category:Development]]

Revision as of 17:17, 21 September 2017

What is Doxygen ?

Doxygen is the de facto standard tool for generating documentation from annotated C++ sources [1]

Generating the Doxygen documentation for Octave

Doxygen documentation for Octave is easily generated from Octave sources. Instructions can be found in doc/doxyhtml/README.

Where can I browse the Doxygen documentation for Octave ?

Alternatively, you can access version specific Doxygen documentation:

What is the current status of Octave's Doxygen documentation ?

Very little Doxygen documentation is currently available in Octave's source code. Which is why "Doxygen documentation for the C++ classes" is listed in the Projects page of this wiki.

Doxygen Style Guide

Doxygen allows for a variety of commenting styles. In order to maintain uniformity across the entire project the following rules should be applied:

  • For Doxygen comments use only //! and NOT /*! ... */
  • Use @ for any Doxygen Special Commands

An example of properly used Doxygen would look like:

//! Comment with special command and syntax highlighting:

//! @code{.cc}
//! double v = 1.0;
//! @endcode