This commit is contained in:
doitux
2007-01-13 22:29:17 +00:00
parent ccd74ccb92
commit 507ffdd2a8
21 changed files with 176 additions and 85 deletions
+6 -3
View File
@@ -29,7 +29,10 @@
class Game;
class Session;
class LocalHand;
class BoardInterface;
class HandInterface;
class PlayerInterface;
class QColor;
@@ -39,7 +42,7 @@ Q_OBJECT
public:
mainWindowImpl(QMainWindow *parent = 0, const char *name = 0 );
void setGame(Game*);
void setHand(LocalHand*);
void setHand(HandInterface*);
void setSession(Session*);
@@ -143,7 +146,7 @@ public slots:
private:
Game *actualGame;
LocalHand *actualHand;
HandInterface *actualHand;
Session *mySession;