Commit 640babbb authored by Dimitri van Heesch's avatar Dimitri van Heesch
Browse files

Release-1.3.3-20030915

parent 79ad8414
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.3.3-20030909
DOXYGEN Version 1.3.3-20030915

Please read the installation section of the manual 
(http://www.doxygen.org/install.html) for instructions.

--------
Dimitri van Heesch (09 September 2003)
Dimitri van Heesch (15 September 2003)
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.3.3_20030909
DOXYGEN Version 1.3.3_20030915

Please read INSTALL for compilation instructions.

@@ -17,4 +17,4 @@ to subscribe to the lists or to visit the archives.

Enjoy,

Dimitri van Heesch (dimitri@stack.nl) (09 September 2003)
Dimitri van Heesch (dimitri@stack.nl) (15 September 2003)
+1 −1
Original line number Diff line number Diff line
1.3.3-20030909
1.3.3-20030915
+1 −0
Original line number Diff line number Diff line
@@ -48,3 +48,4 @@ PERL_PATH = /usr/local/bin/perl
SEARCHENGINE      = NO
PDF_HYPERLINKS    = YES
USE_PDFLATEX      = YES
STRIP_CODE_COMMENTS = NO
+42 −0
Original line number Diff line number Diff line
@@ -56,12 +56,14 @@ documentation:
\refitem cmddefgroup \\defgroup
\refitem cmddeprecated \\deprecated
\refitem cmddontinclude \\dontinclude
\refitem cmddot \\dot
\refitem cmddotfile \\dotfile
\refitem cmde \\e
\refitem cmdelse \\else
\refitem cmdelseif \\elseif
\refitem cmdem \\em
\refitem cmdendcode \\endcode
\refitem cmdenddot \\enddot
\refitem cmdendhtmlonly \\endhtmlonly
\refitem cmdendif \\endif
\refitem cmdendlatexonly \\endlatexonly
@@ -1508,6 +1510,40 @@ ALIASES = "english=\if english" \
  The copydoc command can be used recursively, but cycles in the copydoc
  relation will be broken and flagged as an error.

<hr>
\section cmddot \dot

  \addindex \\dot
  Starts a text fragment which should contain a valid description of a
  dot graph. The text fragment ends with \ref cmdenddot "\\enddot". 
  Doxygen will pass the text on to dot and include the resulting 
  image (and image map) into the output.
  The nodes of a graph can be made clickable by using the URL attribute.
  By using the command \\ref inside the URL value you can conveniently 
  link to an item inside doxygen. Here is an example:
\code
/*! class B */
class B {};

/*! class C */
class C {};

/*! \mainpage
 *
 *  Class relations expressed via an inline dot graph:
 *  \dot
 *  digraph example {
 *      node [shape=record, fontname=Helvetica, fontsize=10];
 *      b [ label="class B" URL="\ref B"];
 *      c [ label="class C" URL="\ref C"];
 *      b -> c [ arrowhead="open", style="dashed" ];
 *  }
 *  \enddot
 *  Note that the classes in the above graph are clickable 
 *  (in the HTML output).
 */
\endcode
  
<hr>
\section cmddotfile \dotfile <file> ["caption"] 

@@ -1568,6 +1604,12 @@ ALIASES = "english=\if english" \
  Ends a block of code.
  \sa section \ref cmdcode "\\code"
 
<hr>
\section cmdenddot \enddot

  \addindex \\enddot
  Ends a blocks that was started with \ref cmddot "\\dot".

<hr>
\section cmdendhtmlonly \endhtmlonly

Loading