| Mark Slee | 3198572 | 2006-05-24 21:45:31 +0000 | [diff] [blame] | 1 | #ifndef T_GLOBALS_H |
| 2 | #define T_GLOBALS_H | ||||
| 3 | |||||
| 4 | class t_program; | ||||
| 5 | |||||
| 6 | /** Global variable: the master program parse tree */ | ||||
| 7 | extern t_program* g_program; | ||||
| 8 | |||||
| 9 | /** Global debug state */ | ||||
| 10 | extern int g_debug; | ||||
| 11 | |||||
| 12 | /** Global time string */ | ||||
| 13 | extern char* g_time_str; | ||||
| 14 | |||||
| 15 | #endif | ||||