SVN_SILENT made messages (.desktop file)
[kdegames.git] / libkdegames / kggzmod / player_private.h
blobbd9e2b920ce937c501766e9325a9eedfa104d7c3
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 #ifndef KGGZMOD_PLAYER_PRIVATE_H
22 #define KGGZMOD_PLAYER_PRIVATE_H
24 namespace KGGZMod
27 class PlayerPrivate
29 public:
30 PlayerPrivate(){}
31 Player::Type m_type;
32 QString m_name;
33 int m_seat;
34 Statistics *m_stats;
35 QString m_hostname;
36 QString m_photo;
37 QString m_realname;
42 #endif