I have a problem with classes of c++;
eg.

typedef struct tag{
char *ppp;
}X;

class Y
{
X *exx;
char *yyy;
};

i want to access members of X through Y
eg. Y *yyy;
now i want to access ppp , how do i access it?or how do i make a pointer to X?
Fast reply appreciated
Tapan