I\'m trying to iterate through a Players hand of cards.
Player.cpp
vector::iterator iter; for(iter = current_car
De-referencing the iterator by iter-> gives a pointer to an object of type Card, you have to write (*iter)->display_card();