summaryrefslogtreecommitdiffstats
path: root/doc/grouping.doc
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2011-01-03 18:43:15 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2011-01-03 18:43:15 (GMT)
commit2149c9cb1315b6a42457dd991171bf4fcf7d7015 (patch)
treec44fd80159115f91bacbc05dd72e77e5a6788e84 /doc/grouping.doc
parent48f4fd9c2d9ba8b374e3c052f888df9bc220df92 (diff)
downloadDoxygen-2149c9cb1315b6a42457dd991171bf4fcf7d7015.zip
Doxygen-2149c9cb1315b6a42457dd991171bf4fcf7d7015.tar.gz
Doxygen-2149c9cb1315b6a42457dd991171bf4fcf7d7015.tar.bz2
Release-1.7.3
Diffstat (limited to 'doc/grouping.doc')
-rw-r--r--doc/grouping.doc25
1 files changed, 14 insertions, 11 deletions
diff --git a/doc/grouping.doc b/doc/grouping.doc
index d2244b4..819859c 100644
--- a/doc/grouping.doc
+++ b/doc/grouping.doc
@@ -58,9 +58,12 @@ but when the group has been defined already, then it silently merges the
existing documentation with the new one.
The title of the group is optional for this command, so you can use
\verbatim
-/** \addtogroup <label> */
-/*\@{*/
-/*\@}*/
+/** \addtogroup <label>
+ * @{
+ */
+...
+
+/** @}*/
\endverbatim
to add additional members to a group that is defined in more detail elsewhere.
@@ -91,27 +94,27 @@ extern int VarInA;
/**
* \defgroup IntVariables Global integer variables
+ * @{
*/
-/*@{*/
/** an integer variable */
extern int IntegerVariable;
-/*@}*/
+/**@}*/
....
/**
* \defgroup Variables Global variables
*/
-/*@{*/
+/**@{*/
/** a variable in group A */
int VarInA;
int IntegerVariable;
-/*@}*/
+/**@}*/
\endverbatim
The \ref cmdref "\\ref" command can be used to refer to a group.
@@ -151,15 +154,15 @@ types belong to the same (semantic) group.
A member group is defined by
a
\verbatim
-//@{
+///@{
...
-//@}
+///@}
\endverbatim
block or a
\verbatim
-/*@{*/
+/**@{*/
...
-/*@}*/
+/**@}*/
\endverbatim
block if you prefer C style
comments. Note that the members of the group should be