simhand.h

// Simulated Player  hand header
// Brandon Goldfedder

#ifndef _SIMULATEDPLAYERHAND
#define _SIMULATEDPLAYERHAND

#include "stdhand.h"

class SimulatedPlayerHand: public StandardBlackJackHand {
public:
   SimulatedPlayerHand(const char* name, Displayer
   *displayer);
   ~SimulatedPlayerHand();
   TURN_RESULT TakeTurn();
   const char* const GetIdentity() const;
private:
   char* id;
   };

#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.