4_2.hpp 455 B

1234567891011121314151617181920
  1. #ifndef BOOST_METAPARSE_GETTING_STARTED_4_2_HPP
  2. #define BOOST_METAPARSE_GETTING_STARTED_4_2_HPP
  3. // Automatically generated header file
  4. // Definitions before section 4.1
  5. #include "4_1.hpp"
  6. // Definitions of section 4.1
  7. using int_token = token<int_>;
  8. using plus_token = token<lit_c<'+'>>;
  9. using exp_parser5 = build_parser<sequence<int_token, plus_token, int_token>>;
  10. // query:
  11. // exp_parser5::apply<BOOST_METAPARSE_STRING("11 + 2")>::type
  12. #endif