dealhand.h

// Dealers hand header
// Brandon Goldfedder

#ifndef _STANDARDDEALERHAND
#define _STANDARDDEALERHAND

#include "stdhand.h"

class StandardDealerHand: public StandardBlackJackHand {
public:
   StandardDealerHand(Displayer *displayer);
   ~StandardDealerHand();
   TURN_RESULT TakeTurn();
   const char* const GetIdentity() const;
   unsigned int NumCardsDealtDown() const;
   };

#endif

Get Joy of Patterns: Using Patterns for Enterprise Development, The now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.