How to link to a group of members in doxygen

I found how to give a group of class members a name:

/**\{
\name Foo
*/
 members
/**
\}*/

but how can I refer to Foo from other members of the class?

+5
source share
1 answer
/** \{
\anchor Foo
\name   Foo
*/
members
/** \} */

An anchor allows you to reference a group from another location using

/// \ref Foo
+6
source

All Articles