组成员的个人身份



doxygen配置文件中是否有任何内容可以确定组的成员是否可以单独引用ref?我希望能够将记录为一个小组的班级成员(而不是整个小组)称为普通班级成员。

例如:

/// file
/// In particular, blah blah ref SomeStruct::f1
// Is there a way to make ref's 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
    /// @}
    ...
}

在中尝试'\ref SomeStruct::f1'

///另请简要查看\ref SomeStruct::f1"this"

最新更新