Files Classes Functions Hierarchy
00001 #ifndef DECKPONTOON_H 00002 #define DECKPONTOON_H 00003 00004 #include <vector> 00005 using namespace std; 00006 00007 #include <print.h> 00008 00009 #include <deck.h> 00010 00018 class deckpontoon : public deck 00019 { 00021 vector<uint> v; 00022 00024 uint current; 00026 uint decksize; 00028 uint numberofdecks; 00029 public: 00030 00032 deckpontoon(); 00033 00035 uintc draw(); 00036 00038 void shuffle(); 00039 00040 bool const verifyTheDeck(); 00041 }; 00042 00043 #endif 00044 00045
1.5.8