|
Last change
on this file since 3493 was
3475,
checked in by patrick, 21 years ago
|
|
orxonox/trunk: redesigning directory structure - created defs and added all importand classes. Moved sfont to font since sfont is the name of an other font library.
|
|
File size:
760 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 | typedef unsigned char byte; |
|---|
| 14 | |
|---|
| 15 | // this includes the information from configure/makefiles |
|---|
| 16 | #if HAVE_CONFIG_H |
|---|
| 17 | #include <config.h> |
|---|
| 18 | #endif |
|---|
| 19 | |
|---|
| 20 | #ifdef __WIN32__ |
|---|
| 21 | #include <windows.h> |
|---|
| 22 | #endif |
|---|
| 23 | |
|---|
| 24 | #include "glincl.h" |
|---|
| 25 | |
|---|
| 26 | // MATH // |
|---|
| 27 | #include "matrix.h" |
|---|
| 28 | #include "vector.h" |
|---|
| 29 | #include "curve.h" |
|---|
| 30 | |
|---|
| 31 | #include "list.h" |
|---|
| 32 | #include "list_template.h" |
|---|
| 33 | #include "message_structures.h" |
|---|
| 34 | #include "orxonox.h" |
|---|
| 35 | #include "data_tank.h" |
|---|
| 36 | #include "base_object.h" |
|---|
| 37 | |
|---|
| 38 | #include "error.h" |
|---|
| 39 | #include "debug.h" |
|---|
| 40 | |
|---|
| 41 | #endif /* _STDINCL_H */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.