This commit is contained in:
doitux
2007-01-14 12:15:45 +00:00
parent 31c4c0dde9
commit 514eb3c958
21 changed files with 141 additions and 81 deletions
+6 -4
View File
@@ -20,14 +20,16 @@
#ifndef LOCALPREFLOP_H
#define LOCALPREFLOP_H
#include "preflopinterface.h"
#include <iostream>
class LocalHand;
class HandInterface;
class LocalPreflop {
class LocalPreflop : public PreflopInterface{
public:
LocalPreflop(LocalHand*, int, int, int, int);
LocalPreflop(HandInterface*, int, int, int, int);
~LocalPreflop();
@@ -46,7 +48,7 @@ public:
private:
LocalHand *myHand;
HandInterface *myHand;
int myID;
int actualQuantityPlayers;