如果我的文檔與我的代碼分離,如何幫助Doxygen區分重載函數(在\fn
字段中使用什麼)?一個函數將被記錄如下:Doxygen:記錄重載函數
void func() {
}
/**
\fn func
\details Description here.
*/
如果我有兩個函數func
怎麼辦?
void func() {
}
void func(int i) {
}
/**
\fn [What goes here?]
\details Description here.
*/