PB: everything compiles except for deck storage

This commit is contained in:
Max-Wilhelm Bruker 2012-01-01 02:48:24 +01:00
parent 695fde7541
commit d5c628966f
51 changed files with 659 additions and 628 deletions

View file

@ -6,7 +6,7 @@
class QLabel;
class ServerInfo_User;
class AbstractClient;
class ProtocolResponse;
class Response;
class UserInfoBox : public QWidget {
Q_OBJECT
@ -18,9 +18,9 @@ public:
UserInfoBox(AbstractClient *_client, bool fullInfo, QWidget *parent = 0, Qt::WindowFlags flags = 0);
void retranslateUi();
private slots:
void processResponse(ProtocolResponse *r);
void processResponse(const Response &r);
public slots:
void updateInfo(ServerInfo_User *user);
void updateInfo(const ServerInfo_User &user);
void updateInfo(const QString &userName);
};