diff options
author | Kyle K <kylek389@gmail.com> | 2011-02-01 17:31:14 -0600 |
---|---|---|
committer | Kamil Kaminski <kamilkss@gmail.com> | 2011-02-01 17:31:14 -0600 |
commit | 6c30258da6449f9ffae4b42f4aeda587fe4a3111 (patch) | |
tree | 37cf8d9492c95f308d9ba80c77d55d4b8625f6b8 /sorthand.h | |
parent | 97290be5e03ba2299de0e0988404fb4979852b5c (diff) | |
download | poker-6c30258da6449f9ffae4b42f4aeda587fe4a3111.tar.gz poker-6c30258da6449f9ffae4b42f4aeda587fe4a3111.tar.bz2 poker-6c30258da6449f9ffae4b42f4aeda587fe4a3111.zip |
try putting multiple cards to the left using bubble sort
Diffstat (limited to 'sorthand.h')
-rw-r--r-- | sorthand.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/sorthand.h b/sorthand.h deleted file mode 100644 index 6d5c288..0000000 --- a/sorthand.h +++ /dev/null @@ -1,20 +0,0 @@ -#ifndef _SORTHAND_H_ -#define _SORTHAND_H_ - -#include "cardpile.h" - -class SortHand : virtual public CardPile -{ - private: - - protected: - - public: - SortHand(void); - - void sortFourOfAKind(Card **, struct countAndType *); - void sortThreeOfAKind(Card **, struct countAndType *); -}; - -#endif - |