src/mbb2-free-trader.cpp

00001 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
00002 /*
00003  * frpuniverse
00004  * Copyright (C) Peter L. Berghold 2008 <Peter@Berghold.net>
00005  * 
00006  * frpuniverse is free software.
00007  * 
00008  * You may redistribute it and/or modify it under the terms of the
00009  * GNU General Public License, as published by the Free Software
00010  * Foundation; either version 2 of the License, or (at your option)
00011  * any later version.
00012  * 
00013  * frpuniverse is distributed in the hope that it will be useful,
00014  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00015  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
00016  * See the GNU General Public License for more details.
00017  * 
00018  * You should have received a copy of the GNU General Public License
00019  * along with frpuniverse.  If not, write to:
00020  *      The Free Software Foundation, Inc.,
00021  *      51 Franklin Street, Fifth Floor
00022  *      Boston, MA  02110-1301, USA.
00023  */
00024 
00025 #include "mbb2-free-trader.hpp"
00026 #include "xmlutils.hpp"
00027 mbb2FreeTrader::mbb2FreeTrader():mbShip(MB_FREE_TRADER) , book2Ship() {
00028         this->addHull(SH200);
00029 }
00030 
00031 void mbb2FreeTrader::XMLout(FILE* fout){
00032         fprintf(fout,"\t\t%s\n",createStartElement(MB_TAG));
00033         fprintf(fout,"\t\t\t%s%s%s\n",
00034                         createStartElement(MB_TYPE),
00035                         MB_FREE_TRADER,
00036                         createEndElement(MB_TYPE));
00037         fprintf(fout,"\t\t\t%s%d%s\n",
00038                         createStartElement(MB_AGE),
00039                         this->getAge(),
00040                         createEndElement(MB_AGE));
00041         fprintf(fout,"\t\t%s\n",createEndElement(MB_TAG));
00042         
00043 }

Generated on Fri Mar 7 16:40:53 2008 for frpuniverse by  doxygen 1.4.7