00001 /* 00002 * Part of rvglue source code, 00003 * Copyright (C) 2000 Alexander Kroeller (alilein@gmx.de) 00004 * Copyright (C) 2000 Christer Sundin (ces) (christer@sundin.nu) 00005 * 00006 * This program is free software; you can redistribute it and/or modify 00007 * it under the terms of the GNU General Public License as published by 00008 * the Free Software Foundation; either version 2 of the License, or 00009 * (at your option) any later version. 00010 * 00011 * This program is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 * GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License 00017 * along with this program; if not, write to the Free Software 00018 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00019 */ 00020 00021 /* 00022 * $Id: wmodlist.h,v 1.2 2000/05/03 09:58:38 ali Exp ali $ 00023 * 00024 * $Log: wmodlist.h,v $ 00025 * Revision 1.2 2000/05/03 09:58:38 ali 00026 * ces sync 00027 * 00028 * Revision 1.1 2000/05/03 08:48:43 ali 00029 * Initial revision 00030 */ 00031 #ifndef __WORLD_MODIFIER_LIST_H 00032 #define __WORLD_MODIFIER_LIST_H 00033 00034 #include <vector> 00035 #include <mesh.h> 00036 #include "modlist.h" 00037 #include "meshmod.h" 00038 00039 class W_ModList : public ModList 00040 { 00041 public: 00042 W_ModList(); 00043 virtual ~W_ModList(); 00044 00045 virtual bool parseUnknown(Parser &); 00046 00047 virtual bool apply_MeshOperators(Mesh *); 00048 00049 virtual void dump(const char *pref); // ces 2000-04-13 00050 00051 private: 00052 std::vector<MeshMod *> mods; // ces 2000-04-13 00053 }; 00054 00055 #endif