| 
                Last change
                  on this file since 3669 was
                  3238,
                  checked in by bensch, 21 years ago
           | 
        
        
          | 
               
orxonox/branches: updated branches: buerli, nico, sound. And moved bezierTrack to old.bezierTrack. Conflicts resolved in a usefull order. 
Conflics mostly resolved in favor of trunk 
merge. 
 
           | 
        
        | 
            File size:
            791 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 | // this includes the information from configure/makefiles | 
|---|
| 14 | #if HAVE_CONFIG_H  | 
|---|
| 15 | #include <config.h>  | 
|---|
| 16 | #endif | 
|---|
| 17 |  | 
|---|
| 18 | #ifdef __WIN32__ | 
|---|
| 19 | #include <windows.h> | 
|---|
| 20 | #endif | 
|---|
| 21 |  | 
|---|
| 22 | #ifndef __APPLE__ | 
|---|
| 23 | #include <SDL/SDL.h> | 
|---|
| 24 | #include <GL/gl.h> | 
|---|
| 25 | #include <GL/glu.h> | 
|---|
| 26 | #else | 
|---|
| 27 | #include <SDL.h> | 
|---|
| 28 | #include <OpenGL/gl.h> | 
|---|
| 29 | #include <OpenGL/glu.h> | 
|---|
| 30 | #endif | 
|---|
| 31 |  | 
|---|
| 32 | #include "vector.h" | 
|---|
| 33 | #include "coordinates.h" | 
|---|
| 34 | #include "list.h" | 
|---|
| 35 | #include "list_template.h" | 
|---|
| 36 | #include "error.h" | 
|---|
| 37 | #include "debug.h" | 
|---|
| 38 | #include "message_structures.h" | 
|---|
| 39 | #include "orxonox.h" | 
|---|
| 40 |  | 
|---|
| 41 | #endif /* _STDINCL_H */ | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.