#ifndef _card_hh_ #define _card_hh_ enum Color{SPADES, HEARTS, CLUBS, DIAMONDS}; struct Card{ Color color; unsigned short int value; Card(Color _color,unsigned short int _value ):color(_color), value(_value){} }; class Result{ public: unsigned int res; unsigned int bet; Result(int _res, int _bet):res(_res), bet(_bet){ } }; #endif