Before you reference in-doxygen-documentation-how-to-create-a-link-to-a-specific-line-of-a-file, I already reviewed that and it doesn't answer the question I have.
In doxygen, there are several links created to specific lines of code (assuming code is built when building doxygen output). The best example is function details as shown below:
I would like to create similar links for other items that are parsed when doxygen is created. Specifically, the SDD tags that you see in the picture above. By creating a link from the SDD tags, or referencing it in the same way doxygen does with "Definition at line 6969 of file AlarmManager.cc", will allow my team to jump straight to the line of code where the SDD is referenced/implemented. See code example below:
case NEBULIZER_INOPERATIVE_EN: /// @sdd [ALARM_ANALYSIS_SDD_1]
ConditionEvaluations::SetCondition(C1500);
AlarmManager::ROperandNameList_.append(tempName = C1500);
break;
case NOT_NEBULIZER_INOPERATIVE_EN: /// @sdd [ALARM_ANALYSIS_SDD_2]
ConditionEvaluations::ClearCondition(C1500);
AlarmManager::ROperandNameList_.append(tempName = C1500);
break;
case NEBULIZER_DISCONNECTED_EN: /// @sdd [ALARM_ANALYSIS_SDD_3]
ConditionEvaluations::SetCondition(C1501);
AlarmManager::ROperandNameList_.append(tempName = C1501);
break;
I tried anchors in the code, but that didn't work. I don't know how to just reference and create a link to File->code line.