source:
orxonox.OLD/orxonox/trunk/src/stdincl.h
@
3195
| Last change on this file since 3195 was 3193, checked in by bensch, 21 years ago | |
|---|---|
| File size: 647 bytes | |
| Rev | Line | |
|---|---|---|
| [3193] | 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 | |
| 8 | #ifndef STDINCL_H | |
| 9 | #define STDINCL_H | |
| 10 | ||
| [3193] | 11 | #define null 0 //!< null |
| [1855] | 12 | |
| [2190] | 13 | #ifdef __WIN32__ |
| 14 | #include <windows.h> | |
| [1855] | 15 | #endif |
| [2995] | 16 | |
| 17 | #ifndef __APPLE__ | |
| [2190] | 18 | #include <SDL/SDL.h> |
| [3184] | 19 | #include <GL/gl.h> |
| 20 | #include <GL/glu.h> | |
| [2995] | 21 | #else |
| 22 | #include <SDL.h> | |
| [3184] | 23 | #include <OpenGL/gl.h> |
| 24 | #include <OpenGL/glu.h> | |
| [2995] | 25 | #endif |
| 26 | ||
| [2190] | 27 | #include "vector.h" |
| 28 | #include "coordinates.h" | |
| 29 | #include "list.h" | |
| [2816] | 30 | #include "list_template.h" |
| [2636] | 31 | #include "error.h" |
| [2190] | 32 | #include "message_structures.h" |
| 33 | #include "orxonox.h" | |
| 34 | ||
| 35 | #endif |
Note: See TracBrowser
for help on using the repository browser.










