summaryrefslogtreecommitdiffstats
path: root/doc/grouping.doc
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2011-01-03 18:43:15 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2011-01-03 18:43:15 (GMT)
commit38de39f102c03a52de4c9bb4875125745abce622 (patch)
treec44fd80159115f91bacbc05dd72e77e5a6788e84 /doc/grouping.doc
parentfe6ff0cfd058b1b09bf389dd2c20be317183e094 (diff)
downloadDoxygen-38de39f102c03a52de4c9bb4875125745abce622.zip
Doxygen-38de39f102c03a52de4c9bb4875125745abce622.tar.gz
Doxygen-38de39f102c03a52de4c9bb4875125745abce622.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