summaryrefslogtreecommitdiff
path: root/src/parse/extop.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/extop.h')
-rw-r--r--src/parse/extop.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/parse/extop.h b/src/parse/extop.h
new file mode 100644
index 00000000..d093be92
--- /dev/null
+++ b/src/parse/extop.h
@@ -0,0 +1,17 @@
+#ifndef _RE2C_PARSE_EXTOP_
+#define _RE2C_PARSE_EXTOP_
+
+#include "src/util/c99_stdint.h"
+
+namespace re2c
+{
+
+struct ExtOp
+{
+ uint32_t min;
+ uint32_t max;
+};
+
+} // end namespace re2c
+
+#endif // _RE2C_PARSE_EXTOP_