Commit 0c9bfb1e authored by Dimitri van Heesch's avatar Dimitri van Heesch
Browse files

Release-1.2.4

parent a0758fd1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.2.3-20001220
DOXYGEN Version 1.2.4

Please read the installation section of the manual for instructions.

--------
Dimitri van Heesch (20 December 2000)
Dimitri van Heesch (24 December 2000)
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.2.3-20001220
DOXYGEN Version 1.2.4

Please read INSTALL for compilation instructions.

@@ -7,4 +7,4 @@ The latest version of doxygen can be obtained at

Enjoy,

Dimitri van Heesch (20 December 2000)
Dimitri van Heesch (24 December 2000)
+1 −1
Original line number Diff line number Diff line
1.2.3-20001220
1.2.4
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
\documentclass[a4paper,ps2pdf]{article}
\usepackage{a4wide}
\usepackage{makeidx}
\usepackage{fancyheadings}
\usepackage{fancyhdr}
\usepackage{epsf}
\usepackage{doxygen}
\usepackage{multicol}
+15 −1
Original line number Diff line number Diff line
@@ -33,7 +33,21 @@ To define a group, you should put the \ref cmddefgroup "\\defgroup"
command in a special comment block. The first argument of the command 
is a label that should uniquely identify the group.  You can make an 
entity a member of a specific group by putting 
a \ref cmdingroup "\\ingroup" command inside its documentation.
a \ref cmdingroup "\\ingroup" command inside its documentation block.

To avoid putting \ref cmdingroup "\\ingroup" commands in the documentation
of each member you can also group members together by the 
open marker <code>\@{</code> before the group and the 
closing marker <code>\@}</code> after the group. The markers can 
be put in the documentation of the group definition or in a separate 
documentation block. 

Groups can also be nested using these grouping markers.

Note that compound entities (like classes, files and namespaces) can
be put into multiple groups, but members (like variable, functions, typedefs
and enums) can only be a member of one group 
(this restriction is to avoid ambiguous linking targets).

\par Example:
\verbinclude group.cpp
Loading