File indexing completed on 2024-09-29 06:39:20
0001 /* 0002 <one line to give the program's name and a brief idea of what it does.> 0003 Copyright (C) <year> <name of author> 0004 0005 This program is free software; you can redistribute it and/or modify 0006 it under the terms of the GNU General Public License as published by 0007 the Free Software Foundation; either either version 2 0008 of the License, or (at your option) any later version.of the License, or 0009 (at your option) any later version. 0010 0011 This program is distributed in the hope that it will be useful, 0012 but WITHOUT ANY WARRANTY; without even the implied warranty of 0013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 0014 GNU General Public License for more details. 0015 0016 You should have received a copy of the GNU General Public License along 0017 with this program; if not, write to the Free Software Foundation, Inc., 0018 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 0019 */ 0020 0021 #include "newplayerdata.h" 0022 0023 using namespace Ksirk; 0024 0025 NewPlayerData::NewPlayerData(const QString& name, const QString& nation, const QString& password, bool computer, bool network) : 0026 m_name(name), 0027 m_nation(nation), 0028 m_password(password), 0029 m_computer(computer), 0030 m_network(network) 0031 { 0032 }