Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3454 in orxonox.OLD for orxonox/trunk/src/importer/windowHandler.h


Ignore:
Timestamp:
Mar 3, 2005, 6:35:04 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk/importer: doxygen-tags

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/importer/windowHandler.h

    r3196 r3454  
     1/*!
     2  \file windowHandler.h
     3  \brief contains the WindowHandler class for the minimal display system
     4*/
     5
     6
    17#ifndef _WINDOWHANDLER_H
    28#define _WINDOWHANDLER_H
     
    1622#endif /* __WIN32__ */
    1723
    18 #define TRUE 1
    19 #define FALSE 0
    20 #define BOOL int
     24#define TRUE 1     //!< define true
     25#define FALSE 0    //!< define false
     26#define BOOL int   //!< define BOOL
    2127
     28//! A simple class to handle a minimal display system
    2229class WindowHandler
    2330{
     
    2734    GLvoid KillGLWindow(GLvoid);
    2835    BOOL CreateGLWindow(char* title, int width, int height, int bits, BOOL fullscreenflag);
    29     SDL_Surface* screen;
     36    SDL_Surface* screen;   //!< The screen to which to display the rendered stuff
    3037  private:
    3138    int InitGL(GLvoid);
Note: See TracChangeset for help on using the changeset viewer.