#include "card.h" #ifndef DECK_H #define DECK_H class Deck { public: Deck ( ); // constructor // operations void shuffle ( ){ random_shuffle (cards, cards+52); } bool isEmpty ( ) { return topCard <= 0; } Card draw ( ); //protected: Card cards[52]; int topCard; }; #endif