00001 /** 00002 * @file Platform/ProcessFramework.h 00003 * 00004 * Inclusion of platform dependend process related classes and macros. 00005 * 00006 * @author <a href="mailto:martin@martin-loetzsch.de">Martin Lötzsch</a> 00007 */ 00008 00009 #ifdef APERIOS1_3_2 00010 #include "Aperios1.3.2/ProcessFramework.h" 00011 #define PROCESSFRAMEWORK_INCLUDED 00012 #endif 00013 00014 #ifdef _WIN32 00015 #include "Win32/ProcessFramework.h" 00016 #define PROCESSFRAMEWORK_INCLUDED 00017 #endif 00018 00019 #ifdef LINUX 00020 #include "Linux/ProcessFramework.h" 00021 #define PROCESSFRAMEWORK_INCLUDED 00022 #endif 00023 00024 #ifdef CYGWIN 00025 #include "Linux/ProcessFramework.h" 00026 #define PROCESSFRAMEWORK_INCLUDED 00027 #endif 00028 00029 #ifndef PROCESSFRAMEWORK_INCLUDED 00030 #error Unknown platform 00031 #endif 00032 00033 /* 00034 * Change log : 00035 * 00036 * $Log: ProcessFramework.h,v $ 00037 * Revision 1.1.1.1 2004/05/22 17:23:25 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:56 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.1.1.1 2002/05/10 12:40:18 cvsadm 00060 * Moved GT2002 Project from ute to tamara. 00061 * 00062 * Revision 1.8 2002/05/02 17:04:08 roefer 00063 * New router 00064 * 00065 * Revision 1.7 2002/04/20 15:52:19 roefer 00066 * Project simpified, WATCH and WATCH_PART added 00067 * 00068 * Revision 1.6 2002/01/14 22:45:00 loetzsch 00069 * SimRobot / RobotControl integration started 00070 * 00071 * Revision 1.5 2001/12/10 17:47:08 risler 00072 * change log added 00073 * 00074 */