RioDegenerio - 2014-11-17

i would like to place some markers in the source code and in function description i would like to give reference to that marker. for example:

/*! \brief complexfunction \par Description

*This function implements the complex state machine, which is used to read, write and delete the

*dataobjet from the flash. Please see Marker for the delete operation.

*\param none

*\return OK

*/

int complexfunction{}
{

.......

some several hundreds of source code lines.

.
.
.

Marker

Delete operation

}
which tags can be used to do such a task of referencing, so that by clicking on the reference(Marker) it should jump to relevant Marker in the HTML source code file as in above example to Delete operation. i have already tried \snippet command, this is not what i actually want, i dont want to include snippet of my code in doxygen documentation, rather i would like to jump to source code by clicking at that marker. Just like by a clicking at line , we jump to source code which doxygen automatically produces, for example
Defination at line 50 of example.cpp

same thing i would like to do, replacing line with some marker, so that i could always go to the code where i used the marker, the reason is if i use lines as by default doxygen uses, then these line numbers can change as we further develope the software.