2 This file is part of the kggzmod library.
3 Copyright (c) 2005 - 2007 Josef Spillner <josef@ggzgamingzone.org>
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to
17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
22 #include "player_private.h"
24 using namespace KGGZMod
;
28 d
= new PlayerPrivate();
30 d
->m_type
= Player::unknown
;
35 Player::~Player() { delete d
; }
37 Player::Type
Player::type() const
42 QString
Player::name() const
47 int Player::seat() const
52 Statistics
*Player::stats() const
57 QString
Player::hostname() const
62 QString
Player::photo() const
67 QString
Player::realname() const
72 void Player::init(PlayerPrivate
*x
)