source:
orxonox.OLD/orxonox/branches/nico/src/stdincl.h
@
3542
| Last change on this file since 3542 was 3399, checked in by bensch, 21 years ago | |
|---|---|
| File size: 909 bytes | |
| Rev | Line | |
|---|---|---|
| [3238] | 1 | /*! |
| 2 | \file stdincl.h | |
| 3 | \brief This file includes default headers that nearly every Class needs. | |
| 4 | ||
| 5 | no Class is defined here, but many headers to classes, and more general Headers like the openGL-header. | |
| 6 | */ | |
| [1855] | 7 | |
| [3238] | 8 | #ifndef _STDINCL_H |
| 9 | #define _STDINCL_H | |
| [1855] | 10 | |
| [3238] | 11 | #define null 0 //!< null |
| [1855] | 12 | |
| [3399] | 13 | typedef unsigned char byte; |
| 14 | ||
| [3238] | 15 | // this includes the information from configure/makefiles |
| 16 | #if HAVE_CONFIG_H | |
| 17 | #include <config.h> | |
| 18 | #endif | |
| 19 | ||
| [2190] | 20 | #ifdef __WIN32__ |
| 21 | #include <windows.h> | |
| [1855] | 22 | #endif |
| [2995] | 23 | |
| 24 | #ifndef __APPLE__ | |
| [2190] | 25 | #include <SDL/SDL.h> |
| [3238] | 26 | #include <GL/gl.h> |
| 27 | #include <GL/glu.h> | |
| [2995] | 28 | #else |
| 29 | #include <SDL.h> | |
| [3238] | 30 | #include <OpenGL/gl.h> |
| 31 | #include <OpenGL/glu.h> | |
| [2995] | 32 | #endif |
| 33 | ||
| [2190] | 34 | #include "vector.h" |
| [3399] | 35 | #include "matrix.h" |
| 36 | #include "curve.h" | |
| 37 | //#include "coordinates.h" | |
| [2190] | 38 | #include "list.h" |
| [2816] | 39 | #include "list_template.h" |
| [2636] | 40 | #include "error.h" |
| [3238] | 41 | #include "debug.h" |
| [2190] | 42 | #include "message_structures.h" |
| 43 | #include "orxonox.h" | |
| [3399] | 44 | #include "data_tank.h" |
| 45 | #include "base_object.h" | |
| [2190] | 46 | |
| [3238] | 47 | #endif /* _STDINCL_H */ |
Note: See TracBrowser
for help on using the repository browser.










