00001 00008 /* 00009 This file is part of Advanced Strategic Command; http://www.asc-hq.de 00010 Copyright (C) 1994-2005 Martin Bickel and Marc Schellenberger 00011 00012 This program is free software; you can redistribute it and/or modify 00013 it under the terms of the GNU General Public License as published by 00014 the Free Software Foundation; either version 2 of the License, or 00015 (at your option) any later version. 00016 00017 This program is distributed in the hope that it will be useful, 00018 but WITHOUT ANY WARRANTY; without even the implied warranty of 00019 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00020 GNU General Public License for more details. 00021 00022 You should have received a copy of the GNU General Public License 00023 along with this program; see the file COPYING. If not, write to the 00024 Free Software Foundation, Inc., 59 Temple Place, Suite 330, 00025 Boston, MA 02111-1307 USA 00026 */ 00027 00028 #include "pbem-server.h" 00029 #include "../messaginghub.h" 00030 00031 PBEMServer::PBEMServer() {}; 00032 ASCString PBEMServer::getDefaultServerAddress() { return "not supported"; }; 00033 void PBEMServer::setServerAddress( const ASCString& address ) 00034 { 00035 warning("This version of ASC was compiled without support PBEM Server"); 00036 }; 00037 00038 void PBEMServer::readChildData ( tnstream& stream ) 00039 { 00040 warning("This version of ASC was compiled without support PBEM Server"); 00041 }; 00042 00043 void PBEMServer::writeChildData ( tnstream& stream ) const 00044 { 00045 warning("This version of ASC was compiled without support PBEM Server"); 00046 } 00047 00048 void PBEMServer::setup() 00049 { 00050 warning("This version of ASC was compiled without support PBEM Server"); 00051 } 00052 00053 void PBEMServer::send( const GameMap* map, int lastPlayer, int lastturn ) 00054 { 00055 warning("This version of ASC was compiled without support PBEM Server"); 00056 } 00057 00058 00059 GameMap* PBEMServer::receive() 00060 { 00061 warning("This version of ASC was compiled without support PBEM Server"); 00062 return NULL; 00063 }
1.4.2