CODICE ED ERRORI
codice:
class iFace
{
  ...
  list<Cliente>	client;
  ...
  void newClient();
};

void iFace::newClient()
{
  ...
  list<Cliente>::iterator p = client.begin();
  ...
}

ERRORI:

iface.cpp: In member function `void iFace::newClient()':
iface.cpp:33: parse error before `>' token
iface.cpp:36: `p' undeclared (first use this function)
iface.cpp:36: (Each undeclared identifier is reported only once for each function it appears in.)

Non capisco quale sia il problema
Qualcuno ci capisce?

Grazie
ciao