In the following example I would like to get the first \ref to be a link. Is this possible?
struct myStruct { int myMember; int myMember2; }; struct myStruct myInstance; /** * \ref myInstance.myMember (this fails to create a hyperlink) * \ref myInstance (this creates a hyperlink) * \ref myStruct.myMember (this creates a hyperlink) */ Main() { MyInstance.myMember = 100; }
Thanks
Log in to post a comment.
In the following example I would like to get the first \ref to be a link. Is this possible?
Thanks