grammar.hpp 194 B

1234567
  1. #include <boost/spirit/home/x3.hpp>
  2. namespace x3 = boost::spirit::x3;
  3. x3::rule<struct grammar_r, int> const grammar;
  4. using grammar_type = decltype(grammar);
  5. BOOST_SPIRIT_DECLARE(grammar_type)