deck.h
Go to the documentation of this file.00001 #ifndef DECK_H
00002 #define DECK_H
00003
00004 typedef unsigned int uint;
00005 typedef unsigned int const uintc;
00006
00018 class deck
00019 {
00020 public:
00021
00023 virtual ~deck() {}
00024
00026 virtual uintc draw()=0;
00027
00028 };
00029
00030
00031 #endif
00032