|
Last change
on this file since 4180 was
4178,
checked in by bensch, 20 years ago
|
|
orxonox/branches/physics: merged the Trunk into the physics Branche again:
merged with command:
svn merge ../trunk physics -r 3953:HEAD
no important conflicts
|
|
File size:
588 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 | typedef unsigned char byte; |
|---|
| 12 | |
|---|
| 13 | #include "confincl.h" |
|---|
| 14 | |
|---|
| 15 | #ifdef __WIN32__ |
|---|
| 16 | #include <windows.h> |
|---|
| 17 | #endif |
|---|
| 18 | |
|---|
| 19 | #include <stddef.h> |
|---|
| 20 | #include <stdlib.h> |
|---|
| 21 | #include <string.h> |
|---|
| 22 | |
|---|
| 23 | #include "glincl.h" |
|---|
| 24 | |
|---|
| 25 | #include "error.h" |
|---|
| 26 | #include "debug.h" |
|---|
| 27 | #include "globals.h" |
|---|
| 28 | |
|---|
| 29 | #include "compiler.h" |
|---|
| 30 | #include "xmlparser/tinyxml.h" |
|---|
| 31 | #include "factory.h" |
|---|
| 32 | |
|---|
| 33 | #endif /* _STDINCL_H */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.