00001 /* 00002 * This source file is part of KEOS (Free 3D Engine) 00003 * For the latest info, see http://www.keosengine.org/ 00004 * E-mails : thierry.vouriot@keosengine.org, yeri@keosengine.org 00005 * 00006 * This program is free software; you can redistribute it and/or modify it under 00007 * the terms of the GNU Lesser General Public License as published by the Free Software 00008 * Foundation; either version 2 of the License, or (at your option) any later 00009 * version. 00010 * 00011 * This program is distributed in the hope that it will be useful, but WITHOUT 00012 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 00013 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU Lesser General Public License along with 00016 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple 00017 * Place - Suite 330, Boston, MA 02111-1307, USA, or go to 00018 * http://www.gnu.org/copyleft/lesser.txt. 00019 * 00020 */ 00021 00022 #ifndef KEOS_STDHEADERS_H 00023 #define KEOS_STDHEADERS_H 00024 00025 #include <cassert> 00026 #include <cstdio> 00027 #include <cstdlib> 00028 #include <ctime> 00029 #include <cstring> 00030 #include <cstdarg> 00031 #include <cmath> 00032 #include <cctype> 00033 00034 // STL containers 00035 #include <vector> 00036 #include <map> 00037 #include <string> 00038 #include <set> 00039 #include <list> 00040 #include <deque> 00041 #include <queue> 00042 #include <stack> 00043 00044 // Note - not in the original STL, but exists in SGI STL and STLport 00045 //#ifdef EXT_HASH 00046 //# include <ext/hash_map> 00047 //# include <ext/hash_set> 00048 //#else 00049 //# include <hash_set> 00050 //# include <hash_map> 00051 //#endif 00052 00053 // STL algorithms & functions 00054 #include <algorithm> 00055 #include <functional> 00056 #include <limits> 00057 00058 // C++ Stream stuff 00059 #include <fstream> 00060 #include <iostream> 00061 #include <iomanip> 00062 #include <sstream> 00063 00064 extern "C" 00065 { 00066 00067 # include <sys/types.h> 00068 # include <sys/stat.h> 00069 00070 } 00071 00072 #if KEOS_PLATFORM == KEOS_PLATFORM_WIN32 00073 00074 #include <windows.h> 00075 #undef min 00076 #undef max 00077 #endif 00078 00079 #endif // KEOS_STDHEADERS_H
1.5.1-p1