#include "hand.h" const int SIZE = 5; Hand::Hand() : myCards(SIZE) { } void Hand::DealFrom(Deck& d) { int k; for(k=0; k < SIZE; k++) { myCards[k] = d.GetCard(); } } void Hand::Print() const { int k; for(k=0; k < SIZE; k++) { cout << myCards[k] << endl; } }