diff options
Diffstat (limited to 'MoonParser/pegtl.hpp')
-rw-r--r-- | MoonParser/pegtl.hpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/MoonParser/pegtl.hpp b/MoonParser/pegtl.hpp new file mode 100644 index 0000000..e96cd79 --- /dev/null +++ b/MoonParser/pegtl.hpp | |||
@@ -0,0 +1,31 @@ | |||
1 | // Copyright (c) 2014-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_PEGTL_HPP | ||
5 | #define TAOCPP_PEGTL_INCLUDE_PEGTL_HPP | ||
6 | |||
7 | #include "pegtl/config.hpp" | ||
8 | #include "pegtl/version.hpp" | ||
9 | |||
10 | #include "pegtl/ascii.hpp" | ||
11 | #include "pegtl/parse.hpp" | ||
12 | #include "pegtl/rules.hpp" | ||
13 | #include "pegtl/utf16.hpp" | ||
14 | #include "pegtl/utf32.hpp" | ||
15 | #include "pegtl/utf8.hpp" | ||
16 | |||
17 | #include "pegtl/argv_input.hpp" | ||
18 | #include "pegtl/buffer_input.hpp" | ||
19 | #include "pegtl/cstream_input.hpp" | ||
20 | #include "pegtl/file_input.hpp" | ||
21 | #include "pegtl/istream_input.hpp" | ||
22 | #include "pegtl/memory_input.hpp" | ||
23 | #include "pegtl/read_input.hpp" | ||
24 | #include "pegtl/string_input.hpp" | ||
25 | |||
26 | // The following are not included by | ||
27 | // default because they include <iostream>. | ||
28 | |||
29 | // #include "pegtl/analyze.hpp" | ||
30 | |||
31 | #endif | ||