source:
orxonox.OLD/orxonox/trunk/src/includes/stdincl.h
@
3434
Last change on this file since 3434 was 3434, checked in by bensch, 20 years ago | |
---|---|
File size: 760 bytes |
Rev | Line | |
---|---|---|
[3193] | 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 | */ | |
[1855] | 7 | |
[3224] | 8 | #ifndef _STDINCL_H |
9 | #define _STDINCL_H | |
[1855] | 10 | |
[3193] | 11 | #define null 0 //!< null |
[1855] | 12 | |
[3365] | 13 | typedef unsigned char byte; |
14 | ||
[3204] | 15 | // this includes the information from configure/makefiles |
16 | #if HAVE_CONFIG_H | |
17 | #include <config.h> | |
18 | #endif | |
19 | ||
[2190] | 20 | #ifdef __WIN32__ |
21 | #include <windows.h> | |
[1855] | 22 | #endif |
[2995] | 23 | |
[3433] | 24 | #include "glincl.h" |
[2995] | 25 | |
[3433] | 26 | // MATH // |
27 | #include "matrix.h" | |
[2190] | 28 | #include "vector.h" |
[3365] | 29 | #include "curve.h" |
[3433] | 30 | |
[2190] | 31 | #include "list.h" |
[2816] | 32 | #include "list_template.h" |
[2190] | 33 | #include "message_structures.h" |
34 | #include "orxonox.h" | |
[3365] | 35 | #include "data_tank.h" |
36 | #include "base_object.h" | |
[2190] | 37 | |
[3433] | 38 | #include "error.h" |
39 | #include "debug.h" | |
40 | ||
[3224] | 41 | #endif /* _STDINCL_H */ |
Note: See TracBrowser
for help on using the repository browser.