diff options
Diffstat (limited to 'sorthand.h')
-rw-r--r-- | sorthand.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sorthand.h b/sorthand.h new file mode 100644 index 0000000..3baece7 --- /dev/null +++ b/sorthand.h @@ -0,0 +1,19 @@ +#ifndef _SORTHAND_H_ +#define _SORTHAND_H_ + +#include "cardpile.h" + +class SortHand : virtual public CardPile +{ + private: + + protected: + + public: + SortHand(void); + + void sortFourOfAKind(Card **, struct countAndType *); +}; + +#endif + |