1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
#ifndef CARD_H
#define CARD_H
#include <iostream>
#include <string>
#include <vector>
using namespace std;
class CARD
{
public:
CARD();
enum SUIT { SPADES, HEARTS, DIAMONDS, CLUBS };
enum RANK { ACE = 1, TWO, THREE, FOUR, FIVE, SIX, SEVEN, EIGHT, NINE, TEN, JACK, QUEEN, KING };
enum COLOR { RED, BLACK };
CARD(RANK,SUIT);
int get_rank() const; // returns card rank
string get_suit() const; // returns suit
string get_color() const; // returns card color
// bool cards_dealt(); const; // deal 2 cards per player
private:
SUIT suit;
RANK rank;
COLOR color;
};
#endif
|