• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef BOOST_METAPARSE_GETTING_STARTED_4_2_HPP
2 #define BOOST_METAPARSE_GETTING_STARTED_4_2_HPP
3 
4 // Automatically generated header file
5 
6 // Definitions before section 4.1
7 #include "4_1.hpp"
8 
9 // Definitions of section 4.1
10 using int_token = token<int_>;
11 
12 using plus_token = token<lit_c<'+'>>;
13 
14 using exp_parser5 = build_parser<sequence<int_token, plus_token, int_token>>;
15 
16 // query:
17 //    exp_parser5::apply<BOOST_METAPARSE_STRING("11 + 2")>::type
18 
19 #endif
20 
21