Logging improvements

This commit is contained in:
doitux
2007-02-04 23:58:50 +00:00
parent f6f7c85c07
commit 498e1eb1c5
4 changed files with 63 additions and 16 deletions
+12 -1
View File
@@ -27,13 +27,15 @@
#include <QtGui>
#include <QtCore>
#include "handinterface.h"
class Game;
class Session;
class Log;
class ConfigFile;
class BoardInterface;
class HandInterface;
// class HandInterface;
class PlayerInterface;
class MyCardsPixmapLabel;
@@ -46,12 +48,18 @@ Q_OBJECT
public:
mainWindowImpl(QMainWindow *parent = 0 );
~mainWindowImpl();
void setGame(Game*);
void setHand(HandInterface*);
void setSession(Session*);
void setLog(Log*);
int getMaxQuantityPlayers() const { return maxQuantityPlayers; }
void setActualHand(HandInterface* theValue) { actualHand = theValue;}
HandInterface* getActualHand() const { return actualHand;}
//refresh-Funktionen
void refreshSet();
@@ -156,6 +164,9 @@ public slots:
void paintStartSplash();
private:
Game *actualGame;