SVN_SILENT made messages (.desktop file)
[kdegames.git] / libkdegames / kggzmod / player.cpp
blobbf113728c847d8ef1c757f26ec9af4e1ee7bfe3f
1 /*
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.
21 #include "player.h"
22 #include "player_private.h"
24 using namespace KGGZMod;
26 Player::Player()
28 d = new PlayerPrivate();
30 d->m_type = Player::unknown;
31 d->m_seat = -1;
32 d->m_stats = 0;
35 Player::~Player() { delete d; }
37 Player::Type Player::type() const
39 return d->m_type;
42 QString Player::name() const
44 return d->m_name;
47 int Player::seat() const
49 return d->m_seat;
52 Statistics *Player::stats() const
54 return d->m_stats;
57 QString Player::hostname() const
59 return d->m_hostname;
62 QString Player::photo() const
64 return d->m_photo;
67 QString Player::realname() const
69 return d->m_realname;
72 void Player::init(PlayerPrivate *x)
74 delete d;
75 d = x;