Client engine should now be completely thread safe. const int& -> int. Player CardsValue is now returned as copy, not the array itself.

This commit is contained in:
lotodore
2007-06-11 17:48:22 +00:00
parent dfffa16565
commit 07dc39d107
30 changed files with 1128 additions and 225 deletions
+2 -2
View File
@@ -25,10 +25,10 @@ public:
virtual ~PreflopInterface();
virtual void setPlayersTurn(const int& theValue) =0;
virtual void setPlayersTurn(int theValue) =0;
virtual int getPlayersTurn() const =0;
virtual void setHighestSet(const int& theValue) =0;
virtual void setHighestSet(int theValue) =0;
virtual int getHighestSet() const =0;
virtual void setPreflopFirstRound(bool theValue) =0;