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:
lotodore
2011-02-11 20:02:08 +00:00
parent 29dca1846e
commit 02518c67b2
232 changed files with 22743 additions and 21044 deletions
+9 -8
View File
@@ -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;