Reformatting code using Kernighan & Ritchie style, tabs, tab width=4.
Command line: astyle --style=kr --indent=force-tab=4 --lineend=linux -n -r <file names>
This commit is contained in:
@@ -24,25 +24,26 @@
|
||||
|
||||
class HandInterface;
|
||||
|
||||
class BoardInterface {
|
||||
class BoardInterface
|
||||
{
|
||||
|
||||
public:
|
||||
|
||||
|
||||
virtual ~BoardInterface();
|
||||
//
|
||||
//
|
||||
virtual void setPlayerLists(PlayerList, PlayerList, PlayerList) =0;
|
||||
//
|
||||
//
|
||||
virtual void setMyCards(int* theValue) =0;
|
||||
virtual void getMyCards(int* theValue) =0;
|
||||
//
|
||||
//
|
||||
virtual int getPot() const=0;
|
||||
virtual void setPot(int theValue) =0;
|
||||
virtual int getSets() const=0;
|
||||
virtual void setSets(int theValue) =0;
|
||||
|
||||
virtual void setAllInCondition(bool theValue) =0;
|
||||
virtual void setLastActionPlayer(unsigned theValue) =0;
|
||||
//
|
||||
virtual void setAllInCondition(bool theValue) =0;
|
||||
virtual void setLastActionPlayer(unsigned theValue) =0;
|
||||
//
|
||||
virtual void collectSets() =0;
|
||||
virtual void collectPot() =0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user