|
Last change
on this file since 3202 was
3186,
checked in by bensch, 21 years ago
|
|
orxonox/trunk: mainly importer: doxygen Tags updated for real.
|
|
File size:
485 bytes
|
| Line | |
|---|
| 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 | */ |
|---|
| 7 | |
|---|
| 8 | #ifndef STDINCL_H |
|---|
| 9 | #define STDINCL_H |
|---|
| 10 | |
|---|
| 11 | #define null 0 //!< null |
|---|
| 12 | |
|---|
| 13 | #ifdef __WIN32__ |
|---|
| 14 | #include <windows.h> |
|---|
| 15 | #endif |
|---|
| 16 | |
|---|
| 17 | #ifndef __APPLE__ |
|---|
| 18 | #include <SDL/SDL.h> |
|---|
| 19 | #include <GL/gl.h> |
|---|
| 20 | #include <GL/glu.h> |
|---|
| 21 | #else |
|---|
| 22 | #include <SDL.h> |
|---|
| 23 | #include <OpenGL/gl.h> |
|---|
| 24 | #include <OpenGL/glu.h> |
|---|
| 25 | #endif |
|---|
| 26 | |
|---|
| 27 | |
|---|
| 28 | #endif |
|---|
Note: See
TracBrowser
for help on using the repository browser.