?
=?iso-8859-1?Q?Andr=E9_P=F6nitz?=
Is the following conforming?
#include <list>
class Foo;
typedef std::list<Foo> FooList;
class Foo {};
int main()
{
FooList dummy;
}
Note the 'typedef' comes before the definition of class Foo.
Andre'
#include <list>
class Foo;
typedef std::list<Foo> FooList;
class Foo {};
int main()
{
FooList dummy;
}
Note the 'typedef' comes before the definition of class Foo.
Andre'