adds activePlayerList and runningPlayerList (II)

This commit is contained in:
doitux
2007-09-24 10:02:17 +00:00
parent 84c857cbff
commit d03f114b46
27 changed files with 132 additions and 189 deletions
+3 -6
View File
@@ -37,6 +37,9 @@ public:
virtual void start() = 0;
virtual std::vector<boost::shared_ptr<PlayerInterface> > getPlayerArray() const =0;
virtual PlayerList getActivePlayerList() const =0;
virtual PlayerList getRunningPlayerList() const =0;
virtual BoardInterface* getBoard() const =0;
virtual boost::shared_ptr<BeRoInterface> getPreflop() const =0;
virtual boost::shared_ptr<BeRoInterface> getFlop() const =0;
@@ -48,9 +51,6 @@ public:
virtual void setMyID(int theValue) =0;
virtual int getMyID() const =0;
virtual void setActualQuantityPlayers(int theValue) =0;
virtual int getActualQuantityPlayers() const =0;
virtual void setStartQuantityPlayers(int theValue) =0;
virtual int getStartQuantityPlayers() const =0;
@@ -69,9 +69,6 @@ public:
virtual void setStartCash(int theValue) =0;
virtual int getStartCash() const =0;
virtual void setActivePlayersCounter(int theValue) =0;
virtual int getActivePlayersCounter() const =0;
virtual void setBettingRoundsPlayed(int theValue) =0;
virtual int getBettingRoundsPlayed() const =0;