Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3238 in orxonox.OLD for orxonox/branches/sound/src/stdincl.h


Ignore:
Timestamp:
Dec 20, 2004, 2:42:54 AM (21 years ago)
Author:
bensch
Message:

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:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/sound/src/stdincl.h

    r2636 r3238  
     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*/
    17
    2 #ifndef STDINCL_H
    3 #define STDINCL_H
     8#ifndef _STDINCL_H
     9#define _STDINCL_H
    410
    5 #define null 0
     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
    617
    718#ifdef __WIN32__
    819#include <windows.h>
    920#endif
     21
     22#ifndef __APPLE__
    1023#include <SDL/SDL.h>
    1124#include <GL/gl.h>
    1225#include <GL/glu.h>
     26#else
     27#include <SDL.h>
     28#include <OpenGL/gl.h>
     29#include <OpenGL/glu.h>
     30#endif
    1331
    1432#include "vector.h"
    1533#include "coordinates.h"
    1634#include "list.h"
     35#include "list_template.h"
    1736#include "error.h"
     37#include "debug.h"
    1838#include "message_structures.h"
    1939#include "orxonox.h"
    2040
    21 #endif
     41#endif /* _STDINCL_H */
Note: See TracChangeset for help on using the changeset viewer.