John - 2012-08-08

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