00001 /** 00002 * @file Platform/File.h 00003 * 00004 * Inclusion of platform dependend definitions of simple file handling. 00005 * 00006 * @author <a href="mailto:roefer@tzi.de">Thomas Röfer</a> 00007 */ 00008 00009 #ifdef APERIOS1_3_2 00010 #include "Aperios1.3.2/File.h" 00011 #define FILE_INCLUDED 00012 #endif 00013 00014 #ifdef _WIN32 00015 #include "Win32/File.h" 00016 #define FILE_INCLUDED 00017 #endif 00018 00019 #ifdef LINUX 00020 #include "Linux/File.h" 00021 #define FILE_INCLUDED 00022 #endif 00023 00024 #ifdef CYGWIN 00025 #include "Linux/File.h" 00026 #define FILE_INCLUDED 00027 #endif 00028 00029 #ifndef FILE_INCLUDED 00030 #error Unknown platform 00031 #endif 00032 00033 /* 00034 * Change log : 00035 * 00036 * $Log: File.h,v $ 00037 * Revision 1.1.1.1 2004/05/22 17:23:21 cvsadm 00038 * created new repository GT2004_WM 00039 * 00040 * Revision 1.1 2003/10/07 10:06:58 cvsadm 00041 * Created GT2004 (M.J.) 00042 * 00043 * Revision 1.1.1.1 2003/07/02 09:40:24 cvsadm 00044 * created new repository for the competitions in Padova from the 00045 * tamara CVS (Tuesday 2:00 pm) 00046 * 00047 * removed unused solutions 00048 * 00049 * Revision 1.2 2003/05/05 11:56:29 dueffert 00050 * now using ifdef instead of if 00051 * 00052 * Revision 1.1 2002/09/10 15:40:04 cvsadm 00053 * Created new project GT2003 (M.L.) 00054 * - Cleaned up the /Src/DataTypes directory 00055 * - Removed challenge related source code 00056 * - Removed processing of incoming audio data 00057 * - Renamed AcousticMessage to SoundRequest 00058 * 00059 * Revision 1.3 2002/07/06 20:08:09 roefer 00060 * Advances towards gcc 00061 * 00062 * Revision 1.2 2002/07/04 16:23:33 dueffert 00063 * started to port to gcc 00064 * 00065 * Revision 1.1.1.1 2002/05/10 12:40:18 cvsadm 00066 * Moved GT2002 Project from ute to tamara. 00067 * 00068 * Revision 1.6 2002/05/02 17:04:08 roefer 00069 * New router 00070 * 00071 * Revision 1.5 2002/01/14 22:45:00 loetzsch 00072 * SimRobot / RobotControl integration started 00073 * 00074 * Revision 1.4 2001/12/10 17:47:08 risler 00075 * change log added 00076 * 00077 */