// filename: deck.h #ifndef DECK_CLASS #define DECK_CLASS #include "card.h" // class Card is accessible by this const int NUMSUITS = 4; const int NUMNUMS = 13; const int NUMCARDS = NUMSUITS * NUMNUMS; const char suits[NUMSUITS] = {'C', 'D', 'H', 'S'}; const char nums[NUMNUMS] = {'2', '3', '4', '5', '6', '7', '8', '9', 'T', 'J', 'Q', 'K', 'A'}; class Deck { public: Deck(); void Shuffle(); // YOU WRITE THIS METHOD int compCards() const; // YOU WRITE THIS METHOD void printDeck() const; // YOU WRITE THIS METHOD private: Card deck[NUMCARDS]; }; #endif