我想问问是否有人知道如何防止doxygen从具有相同名称的函数参数生成方法的链接。
例如:在this documentation,QModelIndex buddy (const QModelIndex &index)
中,index
参数被链接到完全不相关的index(int row, int column, const QModelIndex &parent)
方法。你知道如何预防吗?
链接是自动生成的,所以我不能在前面使用%
:
我的代码:
在标题中:
QModelIndex buddy(const QModelIndex &index) const override;
在源中:
/*!
\reimp
*/
QModelIndex TransposeProxyModel::buddy(const QModelIndex &index) const
{/*some implementation*/}
如果有关系,\reimp
是定义为reimp=Reimplemented from base class
的别名