362559b20c1cd66ebbeba1bd8d219d042b698e56
[supertux.git] / globals.h
1 #ifndef __GLOBALS_H__
2 #define __GLOBALS_H__
3
4 #include "tree.h"
5 #include <iostream>
6
7 // parsing
8 extern CompilationUnit* unit;
9 extern bool search_down;
10 extern Namespace* search_namespace;
11 extern Namespace* current_namespace;
12
13 // config/output
14 extern std::istream* input;
15 extern std::string inputfile;
16 extern std::string modulename;
17 extern std::string selected_namespace;
18
19 #endif
20