|
From: julien r. <jul...@us...> - 2005-12-07 22:24:16
|
Update of /cvsroot/epfl/engine/interface In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24199/engine/interface Modified Files: export.h functor.h ibind_manager.h icanvas.h iconsole.h ientity.h ifile_manager.h imaterial.h imaterial_manager.h imodel.h imodel_manager.h import.h itimer.h iworld_manager.h keys.h tglib.h Log Message: license Index: imodel.h =================================================================== RCS file: /cvsroot/epfl/engine/interface/imodel.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** imodel.h 24 Nov 2005 20:47:13 -0000 1.1.1.1 --- imodel.h 7 Dec 2005 22:23:50 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #ifndef TGIMODEL_H #define TGIMODEL_H Index: iworld_manager.h =================================================================== RCS file: /cvsroot/epfl/engine/interface/iworld_manager.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** iworld_manager.h 24 Nov 2005 20:47:13 -0000 1.1.1.1 --- iworld_manager.h 7 Dec 2005 22:23:50 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #ifndef TGIWORLD_MANAGER_H #define TGIWORLD_MANAGER_H Index: iconsole.h =================================================================== RCS file: /cvsroot/epfl/engine/interface/iconsole.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** iconsole.h 24 Nov 2005 20:47:13 -0000 1.1.1.1 --- iconsole.h 7 Dec 2005 22:23:50 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #ifndef TGICONSOLE_H #define TGICONSOLE_H *************** *** 4,8 **** #include "functor.h" #include "tglib.h" - #include "stdlib.h" //conversion string, float, int #include <sstream> --- 26,29 ---- *************** *** 50,54 **** inline void _UpdateStr() { intVal = atoi(strVal.data()); ! floatVal = atof(strVal.data()); } }; --- 71,75 ---- inline void _UpdateStr() { intVal = atoi(strVal.data()); ! floatVal = (float)atof(strVal.data()); } }; Index: itimer.h =================================================================== RCS file: /cvsroot/epfl/engine/interface/itimer.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** itimer.h 24 Nov 2005 20:47:13 -0000 1.1.1.1 --- itimer.h 7 Dec 2005 22:23:50 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #ifndef TGITIMER_H #define TGITIMER_H Index: imaterial_manager.h =================================================================== RCS file: /cvsroot/epfl/engine/interface/imaterial_manager.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** imaterial_manager.h 24 Nov 2005 20:47:13 -0000 1.1.1.1 --- imaterial_manager.h 7 Dec 2005 22:23:50 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #ifndef TGIMATERIAL_MANAGER_H #define TGIMATERIAL_MANAGER_H Index: icanvas.h =================================================================== RCS file: /cvsroot/epfl/engine/interface/icanvas.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** icanvas.h 24 Nov 2005 20:47:13 -0000 1.1.1.1 --- icanvas.h 7 Dec 2005 22:23:50 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #ifndef TGICANVAS_H #define TGICANVAS_H *************** *** 19,23 **** { public: ! virtual ~tgICanvas() {}; /** * Affiche du texte à l'écran --- 41,45 ---- { public: ! virtual ~tgICanvas() {} /** * Affiche du texte à l'écran *************** *** 25,29 **** * @param CR un booléen qui dit si il faudra aller à la ligne après l'affichage du texte (par défaut, true) */ ! virtual void DrawText (const tgstring& str, bool CR=true) = 0; /** --- 47,51 ---- * @param CR un booléen qui dit si il faudra aller à la ligne après l'affichage du texte (par défaut, true) */ ! virtual void DisplayText (const tgstring& str, bool CR=true) = 0; /** Index: ifile_manager.h =================================================================== RCS file: /cvsroot/epfl/engine/interface/ifile_manager.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ifile_manager.h 24 Nov 2005 20:47:13 -0000 1.1.1.1 --- ifile_manager.h 7 Dec 2005 22:23:50 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #ifndef TGIFILE_MANAGER_H #define TGIFILE_MANAGER_H Index: ibind_manager.h =================================================================== RCS file: /cvsroot/epfl/engine/interface/ibind_manager.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ibind_manager.h 24 Nov 2005 20:47:13 -0000 1.1.1.1 --- ibind_manager.h 7 Dec 2005 22:23:50 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #ifndef TGIBIND_MANAGER_H #define TGIBIND_MANAGER_H Index: keys.h =================================================================== RCS file: /cvsroot/epfl/engine/interface/keys.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** keys.h 24 Nov 2005 20:47:13 -0000 1.1.1.1 --- keys.h 7 Dec 2005 22:23:50 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #ifndef TGKEYS_H #define TGKEYS_H Index: export.h =================================================================== RCS file: /cvsroot/epfl/engine/interface/export.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** export.h 24 Nov 2005 20:47:13 -0000 1.1.1.1 --- export.h 7 Dec 2005 22:23:50 -0000 1.2 *************** *** 1,25 **** ! #ifndef TGEXPORT_H ! #define TGEXPORT_H ! #include "iworld_manager.h" ! #include "ibind_manager.h" ! #include "ifile_manager.h" ! #include "imodel_manager.h" ! #include "itimer.h" ! #include "iconsole.h" ! #include "icanvas.h" ! #include "imaterial_manager.h" ! struct tgEngineExport ! { ! tgIWorldManager* pWorldManager; ! tgIBindManager* pBindManager; ! tgIFileManager* pFileManager; ! tgIModelManager* pModelManager; ! tgITimer* pTimer; ! tgIConsole* pConsole; ! tgICanvas* pCanvas; ! tgIMaterialManager* pMaterialManager; ! }; ! #endif --- 1,50 ---- ! /* ! ----------------------------------------------------------------------------- ! This source file is part of Terminal G33k ! Copyright (c) 2000-2005 The Terminal G33k Team ! Also see acknowledgements in Readme.html ! This program is free software; you can redistribute it and/or modify it under ! the terms of the GNU Lesser General Public License as published by the Free Software ! Foundation; either version 2 of the License, or (at your option) any later ! version. ! This program is distributed in the hope that it will be useful, but WITHOUT ! ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS ! FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. ! ! You should have received a copy of the GNU Lesser General Public License along with ! this program; if not, write to the Free Software Foundation, Inc., 59 Temple ! Place - Suite 330, Boston, MA 02111-1307, USA, or go to ! http://www.gnu.org/copyleft/lesser.txt. ! ----------------------------------------------------------------------------- ! */ ! #ifndef TGEXPORT_H ! #define TGEXPORT_H ! ! //comptabilite Win32 ! ! ! #include "iworld_manager.h" ! #include "ibind_manager.h" ! #include "ifile_manager.h" ! #include "imodel_manager.h" ! #include "itimer.h" ! #include "iconsole.h" ! #include "icanvas.h" ! #include "imaterial_manager.h" ! ! struct tgEngineExport ! { ! tgIWorldManager* pWorldManager; ! tgIBindManager* pBindManager; ! tgIFileManager* pFileManager; ! tgIModelManager* pModelManager; ! tgITimer* pTimer; ! tgIConsole* pConsole; ! tgICanvas* pCanvas; ! tgIMaterialManager* pMaterialManager; ! }; ! ! #endif Index: functor.h =================================================================== RCS file: /cvsroot/epfl/engine/interface/functor.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** functor.h 24 Nov 2005 20:47:13 -0000 1.1.1.1 --- functor.h 7 Dec 2005 22:23:50 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ /** Template de functor, utilises pour les callback * Ce fichier a été généré automatiquement *************** *** 5,10 **** #ifndef TGFUNCTOR_H #define TGFUNCTOR_H ! #include <stdlib.h> ! #include <string.h> /* --- 27,33 ---- #ifndef TGFUNCTOR_H #define TGFUNCTOR_H ! #include "tglib.h" ! /*#include <stdlib.h> ! #include <string.h>*/ /* Index: imaterial.h =================================================================== RCS file: /cvsroot/epfl/engine/interface/imaterial.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** imaterial.h 24 Nov 2005 20:47:13 -0000 1.1.1.1 --- imaterial.h 7 Dec 2005 22:23:50 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #ifndef TGIMATERIAL_H #define TGIMATERIAL_H Index: import.h =================================================================== RCS file: /cvsroot/epfl/engine/interface/import.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** import.h 24 Nov 2005 20:47:13 -0000 1.1.1.1 --- import.h 7 Dec 2005 22:23:50 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #ifndef TGIMPORT_H #define TGIMPORT_H Index: tglib.h =================================================================== RCS file: /cvsroot/epfl/engine/interface/tglib.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** tglib.h 24 Nov 2005 20:47:13 -0000 1.1.1.1 --- tglib.h 7 Dec 2005 22:23:50 -0000 1.2 *************** *** 1,6 **** #ifndef TGLIB_H #define TGLIB_H - /// Unsigned 1-byte integer. typedef unsigned char uint8; --- 1,27 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #ifndef TGLIB_H #define TGLIB_H /// Unsigned 1-byte integer. typedef unsigned char uint8; *************** *** 17,21 **** ! #include "../tglib/math/vector.h" --- 38,43 ---- ! //fscanf, fopen deprecated sous Visualc++ 2005 (en faveur de fscanf_s fopen_s) ! #include "stdlib.h" #include "../tglib/math/vector.h" Index: imodel_manager.h =================================================================== RCS file: /cvsroot/epfl/engine/interface/imodel_manager.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** imodel_manager.h 24 Nov 2005 20:47:13 -0000 1.1.1.1 --- imodel_manager.h 7 Dec 2005 22:23:50 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #ifndef TGIMODEL_MANAGER_H #define TGIMODEL_MANAGER_H Index: ientity.h =================================================================== RCS file: /cvsroot/epfl/engine/interface/ientity.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ientity.h 24 Nov 2005 20:47:13 -0000 1.1.1.1 --- ientity.h 7 Dec 2005 22:23:50 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #ifndef TGENTITY_H #define TGENTITY_H |