Access to the field of a structure

Hi All,

in my .c file I have a struct like this:

typedef struct var {
int x;
int y;
} point;

Overriding the VisitTypedefDecl method I can access to the structure using a TypedefNameDecl variable. How can I access to the fields of the struct?

Thanks,
Alberto