diff options
Diffstat (limited to 'MoonParser/pegtl/rewind_mode.hpp')
-rw-r--r-- | MoonParser/pegtl/rewind_mode.hpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/MoonParser/pegtl/rewind_mode.hpp b/MoonParser/pegtl/rewind_mode.hpp new file mode 100644 index 0000000..f78edb9 --- /dev/null +++ b/MoonParser/pegtl/rewind_mode.hpp | |||
@@ -0,0 +1,24 @@ | |||
1 | // Copyright (c) 2016-2017 Dr. Colin Hirsch and Daniel Frey | ||
2 | // Please see LICENSE for license or visit https://github.com/taocpp/PEGTL/ | ||
3 | |||
4 | #ifndef TAOCPP_PEGTL_INCLUDE_REWIND_MODE_HPP | ||
5 | #define TAOCPP_PEGTL_INCLUDE_REWIND_MODE_HPP | ||
6 | |||
7 | #include "config.hpp" | ||
8 | |||
9 | namespace tao | ||
10 | { | ||
11 | namespace TAOCPP_PEGTL_NAMESPACE | ||
12 | { | ||
13 | enum class rewind_mode : char | ||
14 | { | ||
15 | ACTIVE, | ||
16 | REQUIRED, | ||
17 | DONTCARE | ||
18 | }; | ||
19 | |||
20 | } // namespace TAOCPP_PEGTL_NAMESPACE | ||
21 | |||
22 | } // namespace tao | ||
23 | |||
24 | #endif | ||