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
+19 -5
View File
@@ -20,14 +20,28 @@
#ifndef TURNINTERFACE_H
#define TURNINTERFACE_H
/**
@author FThauer FHammer <f.thauer@web.de>
*/
class TurnInterface{
public:
TurnInterface();
virtual ~TurnInterface();
~TurnInterface();
virtual void setPlayersTurn(const int& theValue) =0;
virtual int getPlayersTurn() const =0;
virtual void setHighestSet(const int& theValue) =0;
virtual int getHighestSet() const=0;
virtual void setFirstTurnRound(bool theValue) =0;
virtual bool getFirstTurnRound() const =0;
virtual void setSmallBlindPosition(const int& theValue) =0;
virtual int getSmallBlindPosition() const =0;
virtual void setSmallBlind(const int& theValue) =0;
virtual int getSmallBlind() const =0;
virtual void turnRun() =0;
virtual void nextPlayer2() =0;
};