src
globals.h
Go to the documentation of this file.
1 #ifndef _RE2C_GLOBALS_
2 #define _RE2C_GLOBALS_
3 
4 #include <string>
5 
6 #include "src/conf/opt.h"
7 #include "src/conf/warn.h"
8 #include "src/util/c99_stdint.h"
9 
10 namespace re2c
11 {
12 
13 extern bool bUsedYYBitmap;
14 extern bool bWroteGetState;
15 extern bool bWroteCondCheck;
16 extern uint32_t last_fill_index;
17 extern std::string yySetupRule;
18 
19 extern Opt opts;
20 extern Warn warn;
21 
22 } // end namespace re2c
23 
24 #endif // _RE2C_GLOBALS_
bool bWroteGetState
Definition: main.cc:17
Warn warn
Definition: warn.cc:11
bool bWroteCondCheck
Definition: main.cc:18
std::string yySetupRule
Definition: main.cc:20
bool bUsedYYBitmap
Definition: main.cc:16
Opt opts
Definition: opt.cc:7
uint32_t last_fill_index
Definition: main.cc:19
Definition: bitmap.cc:10