Individual identification of group members

Is there anything in the doxygen configuration file that determines whether group members will be referenced on \refan individual basis? I would like to be able to refer to participants documented as a group (and not the group as a whole) regarding ordinary members of the class.

For instance:

/// \file
/// In particular, blah blah \ref SomeStruct::f1
// Is there a way to make \ref such as above work without defining anchors?    

/// A very useful struct.
struct SomeStruct {
    ...
    /// \name These functions implement common functionality.
    /// @{
    void f1(); ///< Does X
    void f2(); ///< Does Y
    /// @}
    ...
}
+4
source share
1 answer

try '\ ref SomeStruct :: f1', as in

/// \ look briefly also in \ ref SomeStruct :: f1 "this"

0
source

All Articles