Doxygen

Aus Info-Theke
Version vom 6. Dezember 2022, 20:15 Uhr von 84.173.104.65 (Diskussion) (Die Seite wurde neu angelegt: „= Links = * https://doxygen.nl/manual = Installation = <syntaxhighlight lang="bash"> apt install doxygen doxygen-gui </syntaxhighlight> = Konfiguration = <sy…“)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
Zur Navigation springen Zur Suche springen

Links

Installation

apt install doxygen doxygen-gui

Konfiguration

cd /my/project
doxywizard

Beispiel

/**
 * @mainpage
 * <h1>Objectives</h1>
 * <ul><li>The package polygeo offers classes for processing geometry problems with points, rectangles and polygons.
 * </li>
 * <li>There is the possibility to draw geometric objects as SVG images in a HTML file.</li>
 * </ul>
 * @file main.cpp
 * Contains the main program.
 */
/**
 * Manages a 2 dimensional point.
 */
class Point2D {
  /**
   * Constructor.
   * @param x the x coordinate (left to right)
   * @param y the y coordinate (down to up)
   */
  Point2D(double x, double y);
}