playhand.h

// Players hand header
// Brandon Goldfedder

#ifndef _PLAYERHAND
#define _PLAYERHAND

#include "stdhand.h"

class PlayerHand: public StandardBlackJackHand {
public:
   PlayerHand(const char* name, Displayer *displayer);
   ~PlayerHand();
   TURN_RESULT TakeTurn();
   bool TookInsurance() const;
   bool OfferInsurance();
   const char* const GetIdentity() const;
private:
   bool tookInsurance;
   char* id;
   };

#endif

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.188.152.162