This commit is contained in:
@@ -20,14 +20,29 @@
|
||||
#ifndef FLOPINTERFACE_H
|
||||
#define FLOPINTERFACE_H
|
||||
|
||||
/**
|
||||
@author FThauer FHammer <f.thauer@web.de>
|
||||
*/
|
||||
class FlopInterface{
|
||||
public:
|
||||
FlopInterface();
|
||||
|
||||
~FlopInterface();
|
||||
|
||||
virtual ~FlopInterface();
|
||||
|
||||
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 setFirstFlopRound(bool theValue) =0;
|
||||
virtual bool getFirstFlopRound() 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 flopRun() =0;
|
||||
virtual void nextPlayer2() =0;
|
||||
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user