Hi Morten,
I think you had a typo.
Change this...
void ShowAll() { thePartsList.Iterate(Part::Display); }
...to this...
void ShowAll() { thePartsList.Iterate(&Part::Display); }
HTH, --Eljay
Hi Morten,
I think you had a typo.
Change this...
void ShowAll() { thePartsList.Iterate(Part::Display); }
...to this...
void ShowAll() { thePartsList.Iterate(&Part::Display); }
HTH, --Eljay