123456789101112131415161718192021222324252627282930 |
- #ifndef __GLOBALS_H__
- #define __GLOBALS_H__
- #include "tree.hpp"
- #include <iostream>
- extern CompilationUnit* unit;
- extern bool search_down;
- extern Namespace* search_namespace;
- extern Namespace* current_namespace;
- extern std::string last_docucomment;
- extern std::string original_file;
- extern std::string current_file;
- int getCurrentLine();
- extern std::istream* input;
- extern std::string inputfile;
- extern std::string modulename;
- extern std::string selected_namespace;
- #endif
|