How to reference to member group in doxygen

documentation-generation, doxygen

Solution

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

The anchor allows you to refer to the group from elsewhere using

/// \ref Foo

Problem

I have found how to give a group of class members a name: ``` /**\{ \name Foo */ members /** \}*/ ``` , but how do I reference to Foo from other class members?

Original source