1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
#include <iostream>
#include "Card.h"
using namespace std;
Card::Card() {
enum suits = {Clubs, Diamonds, Hearts, Spades};
enum ranks = {ace = 1, two, three, four, five, six, seven, eight, nine, ten, jack, queen, king};
}
Card::~Card() {
// TODO Auto-generated destructor stub
}
void Card::print(){
cout << three;
}
#endif /* CARD_H_ */
|