Changeset 8677 in orxonox.OLD for branches/gui/src/defs
- Timestamp:
- Jun 21, 2006, 4:49:06 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/src/defs/error.h
r5039 r8677 1 1 2 2 3 /* 3 /* 4 4 orxonox - the future of 3D-vertical-scrollers 5 5 … … 17 17 18 18 19 /*! 19 /*! 20 20 * @file error.h 21 21 * A compendium of Error codes used in the program 22 */ 22 */ 23 23 24 24 … … 54 54 */ 55 55 56 typedef struct 56 struct ErrorMessage 57 57 { 58 ErrorMessage(int code = 0, char* message = NULL, char* location = NULL) 59 : code(code), message(message), location(location) {}; 58 60 int code; 59 61 char* message; 60 62 char* location; 61 } ErrorMessage;63 }; 62 64 63 65 #endif /* _ERROR_H */
Note: See TracChangeset
for help on using the changeset viewer.