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 -5
View File
@@ -20,14 +20,15 @@
#ifndef LOCALFLOP_H
#define LOCALFLOP_H
#include "flopinterface.h"
#include "handinterface.h"
#include <iostream>
class LocalHand;
class LocalFlop {
class LocalFlop : public FlopInterface{
public:
LocalFlop(LocalHand*, int, int, int, int);
LocalFlop(HandInterface*, int, int, int, int);
~LocalFlop();
@@ -52,7 +53,7 @@ public:
private:
LocalHand *myHand;
HandInterface *myHand;
int myID;
int actualQuantityPlayers;